라라벨
라라벨 아티잔(Laravel Artisan) Route List
라우트 목록을 조회하는 artisan 명령어
php artisan route:list
--method=
method로 필터링합니다.
--name=
이름으로 필터링합니다.
--path=
경로 (URI)로 필터링합니다.
--reverse
테이블에 표시되는 순서를 반대로 합니다.
-r
--reverse 축약
--sort
정렬 기준이되는 열을 설정합니다. 허용되는 값은 method, URI, name, action or middleware
입니다.
GET Method 를 사용하고 있는 라우트 목록을 조회하는 PHP Artisnan 명령어
php artisan route:list --method=GET
Name에 'user' 가 포함된 라우트 목록을 조회하는 PHP Artisnan 명령어
php artisan route:list --name=user
0개 댓글