I’m new in Laravel and I can’t understand why the controller doesn’t work. Can you help me? Thanks.
This is the routes.php
file:
This is the WelcomeController
controller:
and this is the exception trowed:
ReflectionException in Container.php line 737:
Class AppHttpControllersWelcomeController does not exist
Advertisement
Answer
You need a WelcomeController.php
file in directory Controllers
, and you have it in Controllers/Auth
I’d suggest to:
$>php artisan make:controller WelcomeController