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();