Laravel Framework
라라벨 php artisan 명령어 사용하여 컨트롤러 만들기!
- php artisan 명령어를 사용하여 손쉽게 컨트롤러를 만들어 보자.
1. 시스템 지정 디렉토리로 컨트롤러 생성
- 라라벨 5기준으로 controller의 default path는 your_laravel_project/app/Http/Controllers 이다.
- artisan명령어를 사용할 때는 라라벨 최상위 디렉토리로 이동 후 실행하자.
- make:controller 를 사용하여 컨트롤러를 만들어 준 default directory로 들어가 잘 생성되었는지 확인하자.
$ php artisan make:controller TestController
2. 사용자 지정 디렉토리로 컨트롤러 생성
- 위에서 언급한것처럼, default directory 내에 특정 폴더로 컨트롤러를 생성하고 싶다면
- make:controller your_path/controllerName 형식으로 지정할 수 있다.
- 필자는 디폴트 디렉토리 내부에 musical 폴더를만들고, 그 하위의 site폴더 내부에 SiteController를 만들었다.
$ php artisan make:controller musical/site/SiteController
내용이 유익하셨다면 구독 및 좋아요 클릭 부탁드려요 :)
오늘 하루도 즐거운 하루 보내세요!
'Laravel' 카테고리의 다른 글
What is Laravel EncryptCookies ???? (0) | 2020.05.26 |
---|---|
라라벨 pagination Https 적용, how to convert pagination http to https? (1) | 2020.05.20 |
라라벨 php artisan 명령어로 model 생성하기! (1) | 2020.05.04 |
데이터베이스 시딩 (Seeder) (0) | 2020.03.18 |
라라벨 http 사이트 https로 전환하며 Helpers 정의 (0) | 2020.03.18 |