Model updates for #3200

This commit is contained in:
James Cole
2020-07-24 16:40:42 +02:00
parent 50ee1a11f6
commit 117affb1d4
2 changed files with 16 additions and 0 deletions

View File

@@ -143,6 +143,13 @@ class Account extends Model
throw new NotFoundHttpException;
}
/**
* Get all of the tags for the post.
*/
public function objectGroups()
{
return $this->morphToMany(ObjectGroup::class, 'object_groupable');
}
/**
* @codeCoverageIgnore

View File

@@ -85,6 +85,14 @@ class ObjectGroup extends Model
return $this->morphedByMany(Bill::class, 'object_groupable');
}
/**
* @return \Illuminate\Database\Eloquent\Relations\MorphToMany
*/
public function accounts()
{
return $this->morphedByMany(Account::class, 'object_groupable');
}
/**
* Route binder. Converts the key in the URL to the specified object (or throw 404).
*
@@ -97,6 +105,7 @@ class ObjectGroup extends Model
{
if (auth()->check()) {
$objectGroupId = (int) $value;
/** @var ObjectGroup $objectGroup */
$objectGroup = self::where('object_groups.id', $objectGroupId)
->where('object_groups.user_id', auth()->user()->id)->first();
if (null !== $objectGroup) {