fanatic/app/Traits/Ownable.php
2022-04-27 18:57:21 -07:00

13 lines
212 B
PHP

<?php
namespace App\Traits;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
trait Ownable
{
public function collective() : BelongsTo
{
return $this->belongsTo(Collective::class);
}
}