{{ __('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