我正在实施此处记录的 Laravel Global Scope,但这似乎对我不起作用。下面是我在User.php
模型中的代码行
<?php
namespace App;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
/**
* The "booted" method of the model.
*
* @return void
*/
protected static function booted()
{
static::addGlobalScope('age', function (Builder $builder) {
$builder->where('age', '>' , 100);
});
}
}
当我解雇User::all()
它时,它只会给我用户查询select * from users
如果我做错了什么或在这里遗漏了什么,请告诉我......