feat(packages): implement package-based business model
This commit is contained in:
@@ -6,6 +6,7 @@ use Inertia\Inertia;
|
||||
// Marketing-Seite mit Locale-Prefix
|
||||
Route::prefix('{locale?}')->where(['locale' => 'de|en'])->middleware('locale')->group(function () {
|
||||
Route::view('/', 'marketing')->name('marketing');
|
||||
Route::view('/packages', 'marketing.packages')->name('packages');
|
||||
Route::get('/occasions/{type}', function ($type) {
|
||||
return view('marketing.occasions', ['type' => $type]);
|
||||
})->name('occasions.type');
|
||||
|
||||
Reference in New Issue
Block a user