Laravel 使用 where 子句显示数据库表中的特定数据
我有一个名为 books 的表,其中有类别列,我想显示特定类别的书籍,但视图不显示书籍并且不返回错误。以下是我的控制器中的功能,
public function science()
{
$books = collect('DB::select * from books')->where('Category','=','Physical Science');
return view('science_view',['books'=>$books]);
}
我将不胜感激任何帮助,谢谢!
I have a table named books which has category column and i want to display books of a specific category but the view display no book and does not return error. Below is the function in my controller
public function science()
{
$books = collect('DB::select * from books')->where('Category','=','Physical Science');
return view('science_view',['books'=>$books]);
}
I will appreciate any help, THANKS!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您创建了一个 Book 模型,您可以通过执行以下操作来实现它:
else
if you created a Book model you can achieve it by doing:
else