Hello,
I need help!
I generated new resource called procedures
and in
routes.php I added Route::resource('procedures', 'ProceduresControer');
And whe i try to acces localhost/procedures
i get following error
ReflectionException Class ProceduresControer does not exist.
I have tried update composer
I tried dump-autoload
But still get the same error,
Does anyone can give me some hint?
Thanks :))
You have a typo, ProceduresControer
, it should be:
Route::resource('procedures', 'ProceduresController');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community