次のようにルートを作成します:
Route::get('articles',['uses'=>'ArticlesController@index','as'=>'articles.index']);
URL にアクセスするには、次の形式で URL にアクセスできます:
<a href="{{ url('/articles') }}">链接</a><a href="{{ URL::to('/articles') }}">链接</a>
<a href="{{ URL::route('articles.index') }}">链接</a><a href="{{ route('articles.index') }}">链接</a>
<a href="{{ URL::action('ArticlesController@index') }}">链接</a><a href="{{ action('ArticlesController@index') }}">链接</a>
ルーティング設定における各パラメータの意味は次のとおりです。