1
0
Fork 0

Update Status model, add place relation

This commit is contained in:
Daniel Supernault 2019-08-17 01:44:59 -06:00
parent 94e444267f
commit 57edd32ed1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -403,4 +403,9 @@ class Status extends Model
return $res[$audience];
}
public function place()
{
return $this->belongsTo(Place::class);
}
}