, , , Query Scopes.
, .
, , :
public function scopePublished($query)
{
return $query->where('status', '=', 'published');
}
:
$articles = App\Articles::published()->get();
, , - , . :
$articles = App\Articles::published()->orderBy('created_at')->get();
, :
public function scopeDraft($query)
{
return $query->where('status', '=', 'draft');
}
:
$articles = App\Articles::draft()->get();
, , .