More than One Scope

You can combine and chain Query Scopes in Eloquent, using more than one scope in a query.

Model:

1public function scopeActive($query) {
2 return $query->where('active', 1);
3}
4 
5public function scopeRegisteredWithinDays($query, $days) {
6 return $query->where('created_at', '>=', now()->subDays($days));
7}

Some Controller:

1$users = User::registeredWithinDays(30)->active()->get();

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 22 courses (477 lessons, total 38 h 20 min)
  • 2 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord