프로그래밍/Laravel5
Laravel - URL 라우팅 방법
도꼬
2017. 8. 20. 15:01
반응형
Route 파일 경로
Laravel 프로젝트 -> route 디렉토리 -> web.php
Route::get('hello', function()}
return 'Hello!';
});
--> GET요청 http://homestead.app/hello
Route::get('hello/world/{name}',function($name){
return 'Hello World ' . $name;
});
--> GET요청 http://homestead.app/hello/world/name변수
Route::get('hello/world/{name?}',function($name = null){
return 'Hello World ' . $name;
});
--> GET요청 http://homestead.app/hello/world/name변수(생략가능)
반응형