changes 0328092025

This commit is contained in:
Simon Pocrnjič
2025-09-28 22:36:47 +02:00
parent b40ee9dcde
commit 7e8e0a479b
61 changed files with 4306 additions and 654 deletions
+4 -1
View File
@@ -2,6 +2,8 @@
namespace Database\Factories;
use App\Models\Client;
use App\Models\Person\Person;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
@@ -17,7 +19,8 @@ class ClientCaseFactory extends Factory
public function definition(): array
{
return [
//
'client_id' => Client::factory(),
'person_id' => Person::factory(),
];
}
}