라라벨 Named Routes라라벨 지명 라우트, 지명 라우팅, 네임드 라우트
as
) 또는 체인 스타일( name()
)로 지정가능Route::get('user/profile', ['as' => 'profile', function () {
//
}]);
Route::get('user/profile', [
'as' => 'profile', 'uses' => 'UserController@showProfile'
]);
Route::get('user/profile', 'UserController@showProfile')->name('profile');
→ 마지막 것이 깔끔해 보임