Demo Exam Create a new project composer create-project laravel/laravel example-app Make a new migration php artisan make:migration create_NAME_table Make migrations php artisan migrate Reload migrations php artisan migrate:refresh Create a new model php artisan make:model MODEL_NAME Create a new model with a migration php artisan make:model MODEL_NAME -m