From 6bcd8dcb5f577c0d2750287a6adaf7ea2021e1ac Mon Sep 17 00:00:00 2001 From: Matt Young Date: Wed, 28 Jan 2026 01:06:54 -0600 Subject: [PATCH] Update factory --- database/factories/ClientFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/factories/ClientFactory.php b/database/factories/ClientFactory.php index da78828..1aca132 100644 --- a/database/factories/ClientFactory.php +++ b/database/factories/ClientFactory.php @@ -15,7 +15,7 @@ class ClientFactory extends Factory public function definition(): array { return [ - 'name' => $this->faker->name(), + 'name' => $this->faker->company(), 'abbreviation' => $this->faker->word(), 'audition_date' => $this->faker->dateTimeBetween('+5 days', '+1 year'), 'status' => ClientStatus::ACTIVE,