Route::group([

'namespace' => 'Dashboard',

'prefix' => 'book'

], function() {


Route::get('/', 'DashboardController@index');

});


Route::group(['prefix' => 'book'], function () {
Route::post('add', 'BookController@add');
Route::get('edit/{id}', 'BookController@edit');
Route::post('update/{id}', 'BookController@update');
Route::delete('delete/{id}', 'BookController@delete');
});



namespace : 디렉터리를 추가로 생성할 수 있음


prefix : 라우트에 접두사를 정의할 수 있음


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

라우트 필요한 메서드만 지정하기 only, except  (0) 2020.02.04
라우팅(routing)-미들웨어  (0) 2019.03.28

+ Recent posts