1

我使用以下方法创建了一个控制器:

php artisan make:controller VideoCategoryController --resource

这是路线:

Route::resource('/admin/video/category', 'VideoCategoryController');

index()不返回数据,但其他方法正常工作。

public function index()
{ 
    return 'test'; 
}
4

1 回答 1

-1

函数名称应为:

getIndex()而不是index().

请参考: https ://laravel.com/docs/5.1/controllers#implicit-controllers

于 2020-05-08T19:15:53.403 回答