1 개요

라라벨 Named Routes라라벨 지명 라우트, 지명 라우팅, 네임드 라우트

Route::get('user/profile', ['as' => 'profile', function () {
    //
}]);
Route::get('user/profile', [
    'as' => 'profile', 'uses' => 'UserController@showProfile'
]);
Route::get('user/profile', 'UserController@showProfile')->name('profile');

→ 마지막 것이 깔끔해 보임