@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->translatedFormat('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) }}