$url="https://ebayi.tjk.org/s/d/program/20240103/full/ISTANBUL.json";
$response = Http::get($url);
if ($response->successful()) {
$json_data = $response->json();
foreach ($json_data as $item) {
// $item['fieldName'] gibi.
}
} else {
return $response->status();
}