Use MUI, structure change, fix API

This commit is contained in:
William Bouzourène 2025-03-05 11:11:39 +01:00
parent ef9f05e031
commit 8db8781f06
15 changed files with 831 additions and 350 deletions

View file

@ -44,7 +44,10 @@ if (isset($json->zips) && !empty($json->zips)) {
continue;
}
$zips[(int)$zip->zip] = $zip->city27;
$zips[] = [
"zip" => (int)$zip->zip,
"city" => $zip->city27
];
}
}