create one item for mission and fix in another table

This commit is contained in:
2026-05-18 11:01:20 +03:30
parent 96960f5e8f
commit f798d05a3c

View File

@@ -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);