🌍 Scope cities and venues by country, add default country handling, and enhance dropdowns with searchable and flag-based country selection

This commit is contained in:
HolgerHatGarKeineNode
2025-12-05 19:16:17 +01:00
parent 0b6853a6ff
commit 57a21514d1
3 changed files with 38 additions and 8 deletions

View File

@@ -27,6 +27,7 @@ class extends Component {
->when($this->search, fn($query)
=> $query->where('name', 'ilike', '%'.$this->search.'%'),
)
->whereHas('city.country', fn($query) => $query->where('countries.code', $this->country))
->orderBy('name')
->paginate(15),
];