Notice
Recent Posts
Recent Comments
Link
고양이 여름이의 지식채널
Laravel php artisan make:model 명령어 본문
php artisan make:model 명령은 라라벨 프로그램에서 새로운 Eloquent 모델을 만드는 데 사용됩니다. 이 명령으로 새 모델을 만들 때 다음 옵션을 사용할 수 있습니다.
options
-a or --all : 모델에 대한 마이그레이션, 팩토리 및 리소스 컨트롤러를 생성합니다.
php artisan make:model Post -a
-c or --controller : 모델에 대한 컨트롤러를 생성합니다.
php artisan make:model Post -c
-f or --factory : 모델에 대한 팩토리를 생성합니다.
php artisan make:model Post -f
-m or --migration : 모델에 대한 테이블을 만들기 위한 마이그레이션을 생성합니다.
php artisan make:model Post -m
-r or --resource : 리소스 컨트롤러로 컨트롤러를 생성합니다.
php artisan make:model Post -r
--plain : 메소드가 포함되지 않은 모델로 생성합니다.
php artisan make:model Post --plain
응용
php artisan make:model Post --migration --controller --resource
-> php artisan make:model Post -mcr
Laravel php artisan route(라우트) 명령어
728x90
반응형
Comments