Updated Map View

This commit is contained in:
2026-06-20 22:21:17 +10:00
parent 6fad966b7e
commit 05ca994253
52 changed files with 2038 additions and 803 deletions
+9
View File
@@ -17,4 +17,13 @@ class Country extends Model
{
return $this->hasMany(Region::class);
}
function sortedRegions(): array
{
return $this
->regions()
->orderBy('name')
->get()
->toArray();
}
}