🛠️ Add services index and landing page components with dynamic links and new Polish translations

This commit is contained in:
HolgerHatGarKeineNode
2025-12-07 00:01:15 +01:00
parent bc700a1f2c
commit aef4deedd6
25 changed files with 2427 additions and 878 deletions

View File

@@ -96,6 +96,10 @@ Route::middleware([])
Volt::route('cities', 'cities.index')->name('cities.index');
Volt::route('venues', 'venues.index')->name('venues.index');
// Self Hosted Services public routes
Volt::route('services', 'services.index')->name('services.index');
Volt::route('service/{service:slug}', 'services.landingpage')->name('services.landingpage');
});
Route::middleware(['auth'])
@@ -120,6 +124,10 @@ Route::middleware(['auth'])
Volt::route('venue-create', 'venues.create')->name('venues.create');
Volt::route('venue-edit/{venue}', 'venues.edit')->name('venues.edit');
// Self Hosted Services protected routes
Volt::route('service-create', 'services.create')->name('services.create');
Volt::route('service-edit/{service}', 'services.edit')->name('services.edit');
Route::redirect('settings', 'settings/profile');
Volt::route('settings/profile', 'settings.profile')->name('settings.profile');