Mass changes

This commit is contained in:
Simon Pocrnjič
2025-10-04 23:36:18 +02:00
parent ab50336e97
commit fe91c7e4bc
46 changed files with 5738 additions and 1873 deletions
@@ -2,6 +2,8 @@
namespace Database\Factories\Person;
use App\Models\Person\AddressType;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
@@ -17,7 +19,10 @@ class PersonAddressFactory extends Factory
public function definition(): array
{
return [
//
'address' => $this->faker->streetAddress(),
'country' => 'SI',
'type_id' => AddressType::factory(),
'user_id' => User::factory(),
];
}
}