*/ class PartnerMediaFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'company_id' => Company::factory(), 'name' => fake()->company(), 'address' => fake()->address(), 'link' => fake()->url(), 'type' => MediaType::ONLINE, 'classification' => MediaClassification::LOCAL, ]; } }