@if(isset($settings['logo']) && !empty($settings['logo'])) @endif
Payment Receipt
Receipt #: {{ $payment->transaction_id }}

Customer Information

Name: {{ $payment->customer->name }}
Email: {{ $payment->customer->email }}
Mobile: {{ $payment->customer->mobile }}

Payment Information

Payment Date: {{ $payment->created_at->format('d M Y, h:i A') }}
Transaction ID: {{ $payment->transaction_id }}
Payment Type: {{ ucfirst($payment->payment_type) }}
@if($payment->payment_type == 'online payment')
Payment Gateway: {{ ucfirst($payment->payment_gateway) }}
@endif
Package Duration Amount
{{ $payment->package->name }} {{ $payment->package->duration / 24 }} {{ $payment->package->package_type == 'unlimited' ? 'Unlimited' : 'Days' }} {{ $settings['currency_symbol'] ?? '$' }} {{ number_format($payment->amount, 2) }}
Total Amount: {{ $settings['currency_symbol'] ?? '$' }} {{ number_format($payment->amount, 2) }}