Laravel Cheat Sheet
The Cheat Sheet
Create Project
laravel new blog
Create Model
Model + Migration + Controller
php artisan make:model Transaction -m -c
php artisan migrate
php artisan migrate:refresh
php artisan migrate:refresh --seed
When seed fails:
composer update
composer dump-autoload
Clear cache
php artisan config:clear
php artisan config:cache
php artisan route:cache