Reusable query logic and attribute casting.
Scopes & Casts
public function scopePublished(Builder $query): Builder
{
return $query->where('is_published', true);
}
Reusable query logic and attribute casting.
public function scopePublished(Builder $query): Builder
{
return $query->where('is_published', true);
}
Comments (0)
Comments are disabled for this site.