Search code examples
phpfunctionlaravel-8pg-column-does-not-exist-error

Method App\\Http\\Controllers\\SalesmanController::show does not exist


I'm using laravel 8 on api call it is giving such type of error

public function  getSalesman(){

       $salesman = Salesman::where('deleted_at', '=', null)->get(['id', 'name']);

       return response()->json([
           'salesman' => $salesman,
       ]);

   }

Solution

  • may be you have not show method in this controller!