Answers for "target class doesn't exist in laravel"

PHP
8

Target class [Controller] does not exist.

//accessing any function in the controller (this is web.php file)
use App\Http\Controllers\PostsController;

Route::get('/post', 'App\Http\Controllers\PostsController@index');
Posted by: Guest on October-27-2020
8

laravel target class does not exist

Uncomment this line in app>>provider>>RouteServiceProvider.php file
// protected $namespace = 'App\\Http\\Controllers';
Posted by: Guest on January-08-2021

Code answers related to "target class doesn't exist in laravel"

Browse Popular Code Answers by Language