Answers for "target class homecontroller does not exist"

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
1

Target class [Barryvdh\Cors\HandleCors] does not exist.

#Add [Barryvdh\Cors\HandleCors] to $middlewareGroups in Kernel.php
'cors' => [
\Barryvdh\Cors\HandleCors::class,
],
Posted by: Guest on November-30-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 homecontroller does not exist"

Browse Popular Code Answers by Language