photobooth funktionen im event admin verlinkt, gäste pwa zeigt photobooth nur noch an, wenn diese aktiviert ist. kontaktformular optimiert. teilen-link mit iMessage und whatsapp erweitert.

This commit is contained in:
Codex Agent
2025-11-23 22:22:06 +01:00
parent 3d9eaa1194
commit df414a31cd
32 changed files with 809 additions and 280 deletions

View File

@@ -176,6 +176,15 @@ class AppServiceProvider extends ServiceProvider
return Limit::perMinute(10)->by('coupon-preview:'.$identifier);
});
RateLimiter::for('contact-form', function (Request $request) {
$ip = $request->ip() ?? 'unknown';
return [
Limit::perMinute(5)->by('contact:ip:'.$ip),
Limit::perHour(30)->by('contact:hour:'.$ip),
];
});
Inertia::share('locale', fn () => app()->getLocale());
Inertia::share('analytics', static function () {
$config = config('services.matomo');