Laravel初始路由器,如何传控制器?

Laravel initial router, how to pass the controller?

夫人。早上好,我想配置我的 Laravel 初始路线,以便在 / 上工作,我不知道如何使用控制器。

我现在使用将我的初始路由重定向到 /start 路由,但我想仅在 / 上使用。

在下面查看我的路由器。

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 控制器传递给这个视图,这可能吗?

有人可以帮我吗?

Route::get('/', 'StartController@index');

看起来像你想要的:https://laravel.com/docs/5.2/routing

您也可以使用数组调用它,以传递额外的参数:

Route::get('/', ['as' => 'start', 'uses' => 'StartController@index']);