*/ class PersonAddressFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'address' => $this->faker->streetAddress(), 'country' => 'SI', 'post_code' => $this->faker->postcode(), 'city' => $this->faker->city(), 'type_id' => AddressType::factory(), 'user_id' => User::factory(), ]; } }