🌐 Add 'all-meetups' route and update sidebar to include global meetup view

- Introduced `all-meetups` route (`meetups.index-all`) for accessing meetups globally.
- Updated sidebar with a new navigation item for global meetups, including icon and dynamic badge count.
- Enhanced backend logic to handle country-specific and global meetup filtering based on the current route.
This commit is contained in:
HolgerHatGarKeineNode
2025-11-24 02:45:13 +01:00
parent ac720a0753
commit ae7479eac0
9 changed files with 44 additions and 13 deletions

View File

@@ -77,6 +77,7 @@ Route::middleware([])
Volt::route('meetup/meetup-events/l/{event}', 'meetups.landingpage-event')->name('meetups.landingpage-event-old');
Volt::route('meetups', 'meetups.index')->name('meetups.index');
Volt::route('all-meetups', 'meetups.index')->name('meetups.index-all');
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');