Laravel 지명 라우트

Jmnote (토론 | 기여)님의 2016년 10월 21일 (금) 22:27 판 (새 문서: ==개요== ;라라벨 Named Routes ;라라벨 기명 라우팅, 지명 라우팅, 네임드 라우트 * 라우트에 대해 이름을 지정할 수 있음 * 배열 스타일( <code>as...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}