In Latest laravel version
route::post('/Route','classname@method name')
route not working and getting this Exception.
Target class [PagesController] does not exist.
Ex:Route::post('/saveTask', 'TaskController@store');
but This way it worked for get method but not for post
Route::get('/about',[FrontendController::class, 'METHODNAME']);