라우트에서 only, except 같이 오지, 제외를 설정할 수 있다.



1
2
Route::resource('questions.answers', 'AnswersController')->only(['store','edit','update','destroy']);  //이것만
Route::resource('questions.answers', 'AnswersController')->except(['index','create','show']); //제외
cs



except와 같이 제외를 시킬 수 있다.


'라라벨 > 라우팅' 카테고리의 다른 글

prefix, namespace  (0) 2020.03.29
라우팅(routing)-미들웨어  (0) 2019.03.28

+ Recent posts