producion changes

This commit is contained in:
Hamidreza Ranjbarpour
2026-05-23 09:28:21 +00:00
parent 4a2612837b
commit 21e9931298
15 changed files with 178 additions and 136 deletions

View File

@@ -38,6 +38,15 @@ class RoadMaintenanceStationController extends Controller
));
}
public function findByCity(Request $request): JsonResponse
{
$stations = RahdariPoint::query()
->where('city_id', $request->query('city_id'))
->get();
return $this->successResponse($stations);
}
/**
* Store a newly created resource in storage.
*/