mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 09:38:36 +00:00
Updated Labels class
Removed unused function Added assigned() hasMany
This commit is contained in:
parent
c9108efd63
commit
bb07f86deb
1 changed files with 2 additions and 7 deletions
|
@ -43,14 +43,9 @@ class Labels extends Model
|
|||
});
|
||||
}
|
||||
|
||||
public static function labelsForService(string $service_id)
|
||||
public function assigned()
|
||||
{
|
||||
return Cache::remember("labels_for_service.$service_id", now()->addMinute(5), function () use ($service_id) {
|
||||
return DB::table('labels_assigned as l')
|
||||
->join('labels', 'l.label_id', '=', 'labels.id')
|
||||
->where('l.service_id', '=', $service_id)
|
||||
->get(['labels.id', 'labels.label']);
|
||||
});
|
||||
return $this->hasMany(LabelsAssigned::class, 'label_id', 'id');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue