Laravel 지명 라우트

1 개요[ | ]

라라벨 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');
→ 마지막 것이 깔끔해 보임

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}