Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel new model

// Model Naming Convention:	singular, ProperCase	EG:	User, UserRequest
php artisan make:model Flight -f	// with Factory
php artisan make:model Flight -s	// with Seeder
php artisan make:model Flight -c	// with Controller
php artisan make:model Flight -m	// with Migration
// EG: use any flag combo to create Model with Migration, Factory, Seeder and Controller
php artisan make:model Flight -mfsc
Source by stillat.com #
 
PREVIOUS NEXT
Tagged: #laravel #model
ADD COMMENT
Topic
Name
8+8 =