Using Laravel framework and MySQL database, the app allow's to manage projects and project tasks, displying them on the frontend.
By default this app can send email (set configuration on .env
file) after each project creation.
Laravel version: 5.7
CSS framework: Bluma
Database: Mysql
This project/app have the debugger Laravel Telescope
available. Check Laravel Telescope (GitHub) for extra info about Laravel Telescope
.
First, clone the repository to your local machine:
git clone https://github.com/nlsnmr/laravel5.7-crud.git
Install dependencies:
composer install
Setup the local configurations:
By default this app can send email after each project creation.
On the.env
file is set withMAIL_DRIVER=log
, when set with smtp, username, etc it should send normally the email
cp .env.example .env
After database creation:
php artisan migrate
Generate key:
php artisan key:generate
Finally, run the development server:
php artisan serve
The app will be available at: 127.0.0.1:8000
The Laravel Telescope (GitHub) will be available at: 127.0.0.1:8000/telescope