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

View File

@@ -2,13 +2,15 @@
namespace App\Models;
use App\HasContactgroups;
use App\HasContracts;
use App\HasDocuments;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Contact extends Model
{
use HasDocuments, HasContracts;
use HasContactgroups;
protected $fillable = ['name', 'type'];