Notice
Recent Posts
Recent Comments
Link
목록Make (1)
고양이 여름이의 지식채널

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 arti..
Programming/Laravel
2023. 2. 2. 00:28