@extends('emails.layouts.main') @section('title', 'Thank You!') @section('content') {{-- Salutation --}}

Hello, {{ explode(' ', $user->name)[0] ?? $user->name }}

{{-- Confirmation message --}}

Thank you for your payment! Your subscription has been successfully processed.

{{-- Payment details box --}}

Payment Details:

Amount Paid: ${{ number_format($transaction->amount, 2) }}
Transaction ID: {{ $transaction->paypal_order_id }}
Date: {{ $transaction->created_at->format('F j, Y') }}

{{-- Subscription details --}}

Your subscription is now active and will remain valid until {{ \Carbon\Carbon::parse($subscriptionDetails['expires_at'])->format('F j, Y') }}.

You can create up to {{ $subscriptionDetails['students_covered'] }} student accounts with your current subscription.

{{-- CTA button --}}
View Payment History
{{-- Additional info --}}

A copy of this receipt has been saved in your account. You can download invoices and view your complete payment history anytime from your dashboard.

If you have any questions about your payment, please don't hesitate to contact us at support@readingful.org.

@endsection