Monika jain
Monika jain

Reputation: 11

controller does not found in laravel

I used 2 routes for calling sam function

  1. Route::get('/sami', 'App\Http\Controller\CommentController@sam');
  2. Route::get('sami',[CommentController::class, 'sam']);

but still got this error - "Illuminate\Contracts\Container\BindingResolutionException Target class [App\Http\Controller\CommentController] does not exist."

Upvotes: 1

Views: 43

Answers (1)

sherifcoder
sherifcoder

Reputation: 169

did u put :

      use App\Http\Controller\CommentController ;

you need to add it in the route

Upvotes: 1

Related Questions