Files
DocumentsPlayground/app/HasContactgroups.php

16 lines
230 B
PHP

<?php
namespace App;
use App\Models\Contactgroup;
use App\Models\Document;
trait HasContactgroups
{
public function contactgroups()
{
return $this->morphToMany(Contactgroup::class, 'contactgroupable');
}
}