Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 laravel 4 检查我的数据库中表的列是否有某个值。我在文档中没有看到任何描述如何执行此操作的内容。
我假设它是这样的:
if(Artist::fbid == "546") endif
其中“艺术家”是我的模型,“fbid”是我感兴趣的领域(列),“546”是我与之比较的值。
我不知道这样做的正确方法。谢谢!
您可以使用魔术 where 方法:
$artist = Artist::whereFbid(546)->get();
或标准 where 方法:
$artist = Artist::where('fbid', '=', 546)->get();