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,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Purchase Confirmation</title>
<title>{{ __('emails.purchase.subject', ['package' => $package->name]) }}</title>
</head>
<body>
<h1>Kauf-Bestätigung</h1>
<p>Vielen Dank für Ihren Kauf, {{ $purchase->user->fullName }}!</p>
<p>Package: {{ $purchase->package->name }}</p>
<p>Preis: {{ $purchase->amount }} </p>
<p>Das Package ist nun in Ihrem Tenant-Account aktiviert.</p>
<p>Mit freundlichen Grüßen,<br>Das Fotospiel-Team</p>
<h1>{{ __('emails.purchase.greeting', ['name' => $user->fullName]) }}</h1>
<p>{{ __('emails.purchase.package', ['package' => $package->name]) }}</p>
<p>{{ __('emails.purchase.price', ['price' => $purchase->price]) }}</p>
<p>{{ __('emails.purchase.activation') }}</p>
<p>{!! __('emails.purchase.footer') !!}</p>
</body>
</html>