本文介绍了Laravel-按自定义列查找或失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有findOrFail()
方法,如果未找到任何内容,则抛出404,例如:
There's findOrFail()
method which throws 404 if nothing was found, e.g.:
User::findOrFail(1);
如何通过自定义列查找实体或失败,如下所示:
How can I find an entity by custom column or fail, something like this:
Page::findBySlugOrFail('about');
推荐答案
尝试如下:
Page::where('slug', '=', 'about')->firstOrFail();
这篇关于Laravel-按自定义列查找或失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!