*/ class SchoolFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->city(), 'address' => fake()->address(), 'city' => fake()->city(), 'state' => 'OK', 'zip' => rand(73001, 74999), ]; } }