No query results for model [App\Products] Laravel

后端 未结 5 2113
予麋鹿
予麋鹿 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:46

    I know it's too late, but for the help for you(May be) and other people:

    Here you mistaken the '$category_id', remove that single quotes.

    public function searchCategoryByTag($id)
    {
        $category_id = Products::findOrFail($id);
        $records=\DB::table('products')->Where('category_id', $category_id);
    }
    

提交回复
热议问题