🌍 Add global map route, refine country-specific routes, and enhance sidebar functionality

- Introduced `meetups.map-world` route for global meetup map view.
- Updated `meetups.map` route to include dynamic filtering based on country.
- Enhanced sidebar with icons and flags for improved navigation clarity.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-23 23:01:42 +01:00
parent 2cfd7abc07
commit a66a6a7207
3 changed files with 39 additions and 9 deletions

View File

@@ -74,6 +74,7 @@ Route::middleware([])
Volt::route('meetups', 'meetups.index')->name('meetups.index');
Volt::route('map', 'meetups.map')->name('meetups.map');
Volt::route('map-world', 'meetups.map')->name('meetups.map-world');
Volt::route('meetup/{meetup:slug}', 'meetups.landingpage')->name('meetups.landingpage');
Volt::route('meetup/{meetup:slug}/event/{event}',
'meetups.landingpage-event')->name('meetups.landingpage-event');