user1404963
user1404963

Reputation: 445

Laravel 5 Custom Classes Not Found

I am working on a Laravel 5.0 project. I added few customer classes in app\Libraries folder under namespace App\Libraries. Everything is working fine on localhost but when I deploy the project live it says my custom class not found. Gone through all the relevant threads but could not find any solution.

Any help would be appreciated.

Regards

Upvotes: 0

Views: 878

Answers (1)

whoacowboy
whoacowboy

Reputation: 7447

You need to run composer dump-autoload on your server.

Upvotes: 3

Related Questions