*/ class CompanyFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->company(), 'address' => fake()->streetAddress() . ", " . fake()->city() . ", " . fake()->postcode(), 'ico' => fake()->numberBetween(111111, 999999), 'contact' => 0, 'hiring' => fake()->boolean(), ]; } }