| 12345678910111213141516171819202122232425 | 
							- <?php
 - 
 - namespace Database\Factories\Common;
 - 
 - use App\Models\Common\Contact;
 - use Illuminate\Database\Eloquent\Factories\Factory;
 - 
 - /**
 -  * @extends Factory<Contact>
 -  */
 - class ContactFactory extends Factory
 - {
 -     /**
 -      * Define the model's default state.
 -      *
 -      * @return array<string, mixed>
 -      */
 -     public function definition(): array
 -     {
 -         return [
 -             'name' => $this->faker->name(),
 -             'email' => $this->faker->unique()->safeEmail(),
 -         ];
 -     }
 - }
 
 
  |