🔄 Update flag asset paths for cities, venues, and countries across API and tools

This commit is contained in:
HolgerHatGarKeineNode
2026-06-12 18:09:54 +02:00
parent 0b454dfc80
commit b6f5d57530
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ class ListCountriesTool extends Tool
->limit(10)
->get()
->map(function (Country $country) {
$country->flag = asset('vendor/blade-country-flags/4x3-'.$country->code.'.svg');
$country->flag = asset('vendor/blade-flags/country-'.$country->code.'.svg');
return $country;
});