Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下方法创建了一个控制器:
php artisan make:controller VideoCategoryController --resource
这是路线:
Route::resource('/admin/video/category', 'VideoCategoryController');
index()不返回数据,但其他方法正常工作。
index()
public function index() { return 'test'; }
函数名称应为:
getIndex()而不是index().
getIndex()
请参考: https ://laravel.com/docs/5.1/controllers#implicit-controllers