Start quickly a Laravel 5 and Bootstrap 4 project with application structure, starter layout, authentication and user management out of the box.
- Install the project :
composer create-project --stability=dev cariagency/quicklaravel myapp
- Update
.env
to fit your needs. - Run migrations:
php artisan migrate
- Seed database to create an admin user:
php artisan db:seed
That's it !
You can log in using these credentials : admin@my.app // admin
.
Remeber to change them ;-)