Skip to content
Advertisement

“Target class [Modules\Admins\Controllers\AdminController] does not exist.”

I’m developing an e-commerce website using Laravel 8, And I tried to change on Laravel folders structure I’ve put views folder inside new path modules/admins which works fine, and I’ve also created a Models folder in the modules/admins path which works fine, however, I am having trouble with the controllers folder.

I still have the app/http/controllers/Controller.php, but now I’ve created a folder called Controllers inside the modules folder, and in it I have a controller called AdminController

error message: “Target class [ModulesAdminsControllersAdminController] does not exist.”

project structure enter image description here

AdminController file

JavaScript

route.php

JavaScript

BaseController.php

JavaScript

Controller.php

JavaScript

Advertisement

Answer

Because your defined namespace is outside of app, you should autoload it in your composer.json file.

JavaScript

Then run composer dump-autoload and it should work fine.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement