我刚刚在here
上阅读了Laravel 5.4文档的一章在本章中,描述了为了定义范围,只需在Eloquent模型方法前加上范围。在一个示例中,定义了两个范围方法(scopePopular& scopeActive),然后,在oder中显示以下代码以显示范围
buttonSelector
问题:
谢谢!
答案 0 :(得分:3)
这些是本地范围。您可以像这样定义popular()
本地范围:
public function scopePopular($query)
{
return $query->where('votes', '>', 100);
}
然后使用它:
Model::popular()->get();
local scopes的文档。