From 55286afaf00213450f5115e0a78d6c81c7b6db76 Mon Sep 17 00:00:00 2001 From: amirghasempoor Date: Sun, 7 Sep 2025 14:31:49 +0330 Subject: [PATCH] resolve conflicts --- .../Dashboard/Harim/PanjareVahedController.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/app/Http/Controllers/V3/Dashboard/Harim/PanjareVahedController.php b/app/Http/Controllers/V3/Dashboard/Harim/PanjareVahedController.php index 468809f2..8960e165 100644 --- a/app/Http/Controllers/V3/Dashboard/Harim/PanjareVahedController.php +++ b/app/Http/Controllers/V3/Dashboard/Harim/PanjareVahedController.php @@ -79,20 +79,4 @@ class PanjareVahedController extends Controller return $this->successResponse(); } - - public function getFinalPolygons(GetAccessRoadRequest $request) - { - $state = HarimStates::TAEDE_ARSE_VA_AYAN_ERSAL_SHODE_TAVASOT_DAFTAR_KARBAR->value; - - Harim::query() - ->firstWhere('panjare_vahed_id', '=', $request->panjare_vahed_id) - ->update([ - 'state_id' => $state, - 'state_name' => HarimStates::name($state), - 'final_area' => $request->final_area, - 'final_plan' => $request->final_plan, - ]); - - return $this->successResponse(); - } }