From 0e8b8fda7e1f7815477b6196e61098202cb130c8 Mon Sep 17 00:00:00 2001 From: joddyabott Date: Tue, 5 Aug 2025 15:46:50 +0330 Subject: [PATCH] add 3 item for factory --- database/factories/HarimFactory.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/database/factories/HarimFactory.php b/database/factories/HarimFactory.php index 428a416e..04773827 100644 --- a/database/factories/HarimFactory.php +++ b/database/factories/HarimFactory.php @@ -50,6 +50,9 @@ class HarimFactory extends Factory 'address' => $this->faker->address, 'file' => $this->faker->name, 'polygon' => json_encode($this->faker->numerify()), + 'need_road_access' => $this->faker->boolean(), + 'is_file_good' => $this->faker->boolean(), + 'is_possible' => $this->faker->boolean(), ]; } }