参考:User::where('verify', 1)->count();更优雅的是用 scope, 在 User model 里面加下面 methodpublic function scopeVerified($query){return $query->where('verify', 1);}然后 User::verified()->count();