*/ class officeFactory extends Factory { /** * Define the model's default state. * * @return array */ protected $model = office::class; public function definition(): array { return [ 'name' => $this->faker->company, 'location' => $this->faker->address, ]; } }