From f798d05a3c3e5b3019e047d8ac424f423456ecea Mon Sep 17 00:00:00 2001 From: faezehzafarbakhsh Date: Mon, 18 May 2026 11:01:20 +0330 Subject: [PATCH] create one item for mission and fix in another table --- .../V3/Dashboard/RoadMaintenanceStationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/V3/Dashboard/RoadMaintenanceStationController.php b/app/Http/Controllers/V3/Dashboard/RoadMaintenanceStationController.php index b92ee60a..ded93c8b 100644 --- a/app/Http/Controllers/V3/Dashboard/RoadMaintenanceStationController.php +++ b/app/Http/Controllers/V3/Dashboard/RoadMaintenanceStationController.php @@ -41,7 +41,7 @@ class RoadMaintenanceStationController extends Controller public function findByCity(Request $request): JsonResponse { $stations = RahdariPoint::query() - ->where('city_id', $request->city_id) + ->where('city_id', $request->query('city_id')) ->get(); return $this->successResponse($stations);