laravel Target class code example

Example 1: Target class [] does not exist.

composer dump-autoload

Example 2: 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');

Example 3: Target class [PlayerController] does not exist.

//add controller path
Route::get('/players', 'App\Http\Controllers\PlayerController@index');

Tags:

Misc Example