🌐 Add German translations and implement calendar streaming functionality

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 13:11:39 +01:00
parent 8afc762bfe
commit 69e46fabce
9 changed files with 496 additions and 348 deletions

View File

@@ -7,9 +7,13 @@ Route::redirect('/', 'welcome');
Volt::route('welcome', 'welcome')->name('welcome');
Route::get('stream-calendar', \App\Http\Controllers\DownloadMeetupCalendar::class)
->name('ics');
Route::middleware([])
->prefix('/{country:code}')
->group(function () {
Volt::route('meetups', 'meetups.index')->name('meetups.index');
Volt::route('map', 'meetups.map')->name('meetups.map');
Volt::route('meetup/{meetup:slug}', 'meetups.landingpage')->name('meetups.landingpage');