login-seiten neu designt, homepage neu designt. "so funktioniert's" ergänzt und Demo-Seite hinzugefügt. Paketansicht in mobile verbessert.

This commit is contained in:
Codex Agent
2025-11-03 11:47:19 +01:00
parent 073b51e2d5
commit 20eda6b4f8
23 changed files with 2481 additions and 587 deletions

View File

@@ -282,6 +282,16 @@ class MarketingController extends Controller
return Inertia::render('marketing/BlogShow', compact('post'));
}
public function howItWorks()
{
return Inertia::render('marketing/HowItWorks');
}
public function demo()
{
return Inertia::render('marketing/Demo');
}
public function packagesIndex()
{
$endcustomerPackages = Package::where('type', 'endcustomer')
@@ -314,7 +324,7 @@ class MarketingController extends Controller
'isInertia' => request()->header('X-Inertia'),
]);
$validTypes = ['hochzeit', 'geburtstag', 'firmenevent'];
$validTypes = ['hochzeit', 'geburtstag', 'firmenevent', 'konfirmation'];
if (! in_array($type, $validTypes)) {
Log::warning('Invalid occasion type accessed', ['type' => $type]);
abort(404, 'Invalid occasion type');