Grundgerüst Formulare und Seeder

This commit is contained in:
2026-02-08 17:40:03 +00:00
parent 59fe129fd0
commit 3e765576bf
41 changed files with 914 additions and 94 deletions

15
app/HasContactgroups.php Normal file
View File

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