Answers for "target class [admin\postscontroller] does not exist."

PHP
0

Target class [UserController] does not exist.

Note: don't forget to import (use) your controller in the routes(web.php) file at the top. Like:
use AppHttpControllersPagesController;

Route::get('/',[PagesController::class, 'index']);
Posted by: Guest on February-25-2021
0

target class admin homecontroller does not exist laravel 8

Route::get('/home', 'AppHttpControllersHomeController@index')->name('home');
Posted by: Guest on June-02-2021

Code answers related to "target class [admin\postscontroller] does not exist."

Browse Popular Code Answers by Language