facebook twitter hatena line email

「Php/laravel/laravel5/ルータ」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「ビューを呼び出す Route::get('/', function () { return view('welcome'); }); Controolerクラスを呼び出す Route::get('/home', 'HomeController@index');...」)
(相違点なし)

2016年8月4日 (木) 18:32時点における版

ビューを呼び出す

Route::get('/', function () {
    return view('welcome');
});

Controolerクラスを呼び出す

Route::get('/home', 'HomeController@index');

英字パラメータ付き

Route::get('/hello/{message}', function($message)
{
    return 'Hello World' . $message;
})
->where('message', '[A-Za-z]+');

数字パラメータ付き

Route::get('/location/{id}', function($id)
{
    return 'Hello World' . $id;
})
->where('message', '[0-9]+');