I have created a controller using:
php artisan make:controller VideoCategoryController --resource
Here is the route:
Route::resource('/admin/video/category', 'VideoCategoryController');
The index() doesn't return data, but other methods work properly.
public function index()
{
return 'test';
}