| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function apply(Builder $builder, Model $model) |
||
| 15 | { |
||
| 16 | $builder->addSelect([ |
||
| 17 | 'is_active' => ActiveableModel::select('is_active') |
||
| 18 | ->whereColumn('object_id', $model->getTable() . ".id") |
||
| 19 | ->where('object_type', get_class($model)) |
||
| 20 | ->latest('created_at') |
||
| 21 | ->latest('id') |
||
| 22 | ->limit(1) |
||
| 23 | ]); |
||
| 24 | } |
||
| 25 | |||
| 28 |