| 123456789101112131415161718 |
- <?php
- namespace App\Models\Scopes;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Scope;
- class YearScope implements Scope
- {
- /**
- * Apply the scope to a given Eloquent query builder.
- */
- public function apply(Builder $builder, Model $model): void
- {
- $builder->where($model->getTable() . '.year', year());
- }
- }
|