MRS。早上好,我想配置我的Laravel初始路线,在/上工作,我不知道如何使用控制器。
此时我使用的是将我的初始路线重定向到/ start路线,但是我想使用on / only。
请参阅下面的路由器。
Route::controller("Start");
Route::controller("Search");
Route::controller("Contact");
Route::get('/', function()
{
return Redirect::to("start");
});
我想:
Route::get('/', function()
{
return View::make("start.index");
});
并将Start.php控制器传递给此视图,这是可能的吗?
有人可以帮助我吗?
答案 0 :(得分:3)
Route::get('/', 'StartController@index');
看起来像你所追求的:https://laravel.com/docs/5.2/routing
您也可以使用数组调用它来传递其他参数:
Route::get('/', ['as' => 'start', 'uses' => 'StartController@index']);