Making Models notes
John Hoskins • November 22, 2020
Default to make a factory and migration for each model.
php artisan make:Model -f -m SingularModelName
For pivot tables add the -p switch
php artisan make:Model -f -m -p Pivot
John Hoskins • November 22, 2020
Default to make a factory and migration for each model.
php artisan make:Model -f -m SingularModelName
For pivot tables add the -p switch
php artisan make:Model -f -m -p Pivot