@extends('emails.template') @section('title', 'Payment Receipt') @section('content')

Payment Verification Successful

Hi {{ $payment->student->user->name }},

We are pleased to inform you that your payment of ${{ number_format($payment->amount, 2) }} {{ strtoupper($payment->currency) }} has been verified successfully.

Receipt Summary:
Transaction ID: {{ $payment->stripe_payment_id ?? 'N/A' }}
Payment Method: {{ ucwords(str_replace('_', ' ', $payment->method)) }}
Classroom: {{ $payment->section->name }}
Verified At: {{ $payment->verified_at ? \Carbon\Carbon::parse($payment->verified_at)->format('M d, Y h:i A') : now()->format('M d, Y') }}

Your enrollment has been updated accordingly. You can review your due installments and payment records inside the billing tab on your portal.

View Payments History

Thank you for choosing CognitiaGlobal School.

@endsection