Query Scopes and Casts

20 min read 2 views Jane Editor
Share:

Reusable query logic and attribute casting.

Scopes & Casts

public function scopePublished(Builder $query): Builder
{
    return $query->where('is_published', true);
}

Comments (0)

Comments are disabled for this site.