Route::group(['namespace' => 'Dashboard','prefix' => 'book'], function() {Route::get('/', 'DashboardController@index');});Route::group(['prefix' => 'book'], function () { Route::post('add', 'BookCo...
라우팅
38LARAVEL on 20-03-29
라우트에서 only, except 같이 오지, 제외를 설정할 수 있다.12Route::resource('questions.answers', 'AnswersController')->only(['store','edit','update','destroy']); //이것만Route::resource('questions.ans...
38LARAVEL on 20-02-03