Answers for "target class controller does not exist laravel 6"

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
0

Target class [Controller] does not exist.

Route::get('/users', [UserController::class, 'index']);
Posted by: Guest on December-07-2020

Code answers related to "target class controller does not exist laravel 6"

Browse Popular Code Answers by Language