feat: Complete checkout overhaul with Stripe PaymentIntent integration and abandoned cart recovery

This commit is contained in:
Codex Agent
2025-10-07 22:25:03 +02:00
parent dd5545605c
commit aa8c6c67c5
38 changed files with 1848 additions and 878 deletions

View File

@@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Fotospiel</title>
<title>{{ __('emails.welcome.subject', ['name' => $user->fullName]) }}</title>
</head>
<body>
<h1>Willkommen bei Fotospiel, {{ $user->fullName }}!</h1>
<p>Vielen Dank für Ihre Registrierung. Ihr Account ist nun aktiv.</p>
<p>Username: {{ $user->username }}</p>
<p>E-Mail: {{ $user->email }}</p>
<p>Bitte verifizieren Sie Ihre E-Mail-Adresse, um auf das Admin-Panel zuzugreifen.</p>
<p>Mit freundlichen Grüßen,<br>Das Fotospiel-Team</p>
<h1>{{ __('emails.welcome.greeting', ['name' => $user->fullName]) }}</h1>
<p>{{ __('emails.welcome.body') }}</p>
<p>{{ __('emails.welcome.username', ['username' => $user->username]) }}</p>
<p>{{ __('emails.welcome.email', ['email' => $user->email]) }}</p>
<p>{{ __('emails.welcome.verification') }}</p>
<p>{!! __('emails.welcome.footer') !!}</p>
</body>
</html>