*/ class EvCompanyFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->company(), 'mm_name' => fake()->company(), 'slug' => fake()->unique()->slug(), 'description' => fake()->sentence(), 'mm_description' => null, 'contact' => fake()->phoneNumber(), 'address' => fake()->address(), 'logo' => null, 'is_active' => true, ]; } }