mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 23:56:47 +00:00
🛠️ Add services index and landing page components with dynamic links and new Polish translations
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user