No query results for model [App\Products] Laravel

后端 未结 5 2116
予麋鹿
予麋鹿 2020-12-20 21:45

In laravel5 i got following message(error)

No query results for model [App\\Products].

I have a table \"products\" which has a

5条回答
  •  悲哀的现实
    2020-12-20 22:27

    **You should change form **

     $category_id = Products::findOrFail($id);
     $records=\DB::table('products')->Where('category_id','$category_id')->get();
    

    change to this $records = Products::where('category_id', $id)->get();

    `$categroy_id ` 
    

    **is get object form your products table instance of **$category_id to $category_id->id

提交回复
热议问题