프로그래밍/Laravel
라라벨 아티즌 주요 명령어
강남리치
2021. 3. 29. 02:24
반응형
아티즌 로컬 서버 시작
# cd c:/dev/apache24/htdocs/laravel
# php artisan serve
어플리케이션 내 모든 라우트 목록 확인 (라우트된 URL 목록을 조회)
# php artisan route:list
CRUD 컨트롤러 자동 생성
# php artisan make:controller [컨트롤러 이름] --resources
업로드된 파일 Web Path로 접근 허용처리
/storage/app/public/images 경로에 있는 파일들을 /public/storage 경로로 접근할 수 있도록 심볼릭링크 생성
# php artisan storage:link
명령어 실행 후 웹패스( 127.0.0.1:8000/storage/images/이미지파일명.확장자 )로 접근이 가능해짐
반응형