homestead에서 사용한 명령창은 이제 사용하지 않는다.


사용하는 에디터로 프로젝트 파일을 연다.



laravel.app로 접속하면 WelcomeController에서 index 를 실행시킨다.




view는 리소스에 있다.



기본 라우팅 도움말

http://xpressengine.github.io/laravel-korean-docs/docs/5.0/routing/


blade템플릿 도움말

http://xpressengine.github.io/laravel-korean-docs/docs/5.0/templates/



Route::get('/test/{msg}',function($msg)
{
    return 'Hello '.$msg;
});