News

Local Model Scopes in Laravel with the Scope Attribute

Published
Local Model Scopes in Laravel with the Scope Attribute image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

When I wrote about Laravel 12.4, I missed a completely new way to write local scopes in Eloquent models 😅. For as long as I can remember, you can define query scopes within a model by prefixing a public method with scope:

public function scopePopular(Builder $query): void
{
$query->where('votes', '>', 100);
}
 
User::popular()->orderBy('created_at', 'DESC')->get();

While Laravel 12 applications will still support the scope* prefixed methods to define a model scope, the new #[Scope] attribute can be used, and it keeps your method name as intended:

use Illuminate\Database\Eloquent\Attributes\Scope;
 
#[Scope]
protected function popular(Builder $query): void
{
$query->where('votes', '>', 100);
}

You can learn more about scopes and getting started with Eloquent in the Laravel documentation. This feature was merged in Laravel v12.4 - check out pull request #54450 for discussion and implementation details.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
NativePHP v4: Build Native iOS and Android UI in Blade image

NativePHP v4: Build Native iOS and Android UI in Blade

Read article
Laravel Lock: Distributed Locks for Models and Routes image

Laravel Lock: Distributed Locks for Models and Routes

Read article
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article