Return packs associated with a service when viewing it on the API.
This commit is contained in:
parent
6220f710df
commit
32c21baab0
2 changed files with 11 additions and 0 deletions
|
@ -60,4 +60,14 @@ class ServiceOptions extends Model
|
|||
{
|
||||
return $this->hasMany(ServiceVariables::class, 'option_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all packs associated with this service.
|
||||
*
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function packs()
|
||||
{
|
||||
return $this->hasMany(ServicePack::class, 'option');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue