changes 0328092025
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
namespace Database\Factories\Person;
|
||||
|
||||
use App\Models\Person\PersonGroup;
|
||||
use App\Models\Person\PersonType;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
@@ -19,13 +21,14 @@ public function definition(): array
|
||||
return [
|
||||
'first_name' => $this->faker->firstName(),
|
||||
'last_name' => $this->faker->lastName(),
|
||||
'full_name' => fn(array $attrs) => trim(($attrs['first_name'] ?? '').' '.($attrs['last_name'] ?? '')),
|
||||
'gender' => $this->faker->randomElement(['m','w']),
|
||||
'full_name' => fn (array $attrs) => trim(($attrs['first_name'] ?? '').' '.($attrs['last_name'] ?? '')),
|
||||
'gender' => $this->faker->randomElement(['m', 'w']),
|
||||
'birthday' => $this->faker->optional()->date(),
|
||||
'tax_number' => $this->faker->optional()->bothify('########'),
|
||||
'social_security_number' => $this->faker->optional()->bothify('#########'),
|
||||
'description' => $this->faker->optional()->sentence(),
|
||||
// group_id/type_id are required; keep null here and let tests/seeds assign or rely on defaults in code paths that use factories
|
||||
'group_id' => PersonGroup::factory(),
|
||||
'type_id' => PersonType::factory(),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,15 +9,12 @@
|
||||
*/
|
||||
class PersonGroupFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
'name' => $this->faker->unique()->word(),
|
||||
'description' => $this->faker->optional()->sentence(),
|
||||
'color_tag' => $this->faker->optional()->safeColorName(),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,7 +17,8 @@ class PersonTypeFactory extends Factory
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
'name' => $this->faker->unique()->word(),
|
||||
'description' => $this->faker->optional()->sentence(),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user