Fernando
Fernando

Reputation: 411

Class 'App\Http\Controllers\Project' not found

I am developing web based project management tool using laravel 5. when I execute it occurred following error.

FatalErrorException in ProjectController.php line 37: Class 'App\Http\Controllers\Project' not found

Upvotes: 0

Views: 4725

Answers (1)

jedrzej.kurylo
jedrzej.kurylo

Reputation: 40909

Make sure you import your Project class with proper use statement, otherwise PHP will look for this class in current namespace.

E.g. if your Project class is in App\Models namespace, add the following at the top of your controller file:

use App\Models\Project;

Upvotes: 1

Related Questions