Laravel 4 nested resource controllers Route::resource('admin/photo', 'PhotoController'); not working

后端 未结 4 1124
無奈伤痛
無奈伤痛 2021-01-13 16:38

In Larvel 4 I\'m trying to setup nested resource controllers.

in routes.php:

Route::resour         


        
4条回答
  •  独厮守ぢ
    2021-01-13 17:19

    Probably you will need to tell Composer to reload classes again, run from your command line:

    composer dump-autoload
    

    That should work.

提交回复
热议问题