@php $logoPath = public_path('images/.png'); @endphp @if (file_exists($logoPath))  Logo @else
@endif
Federation of Nepalese Chambers of Commerce and Industry
PAYMENT RECEIPT
Date (in BS): @nepalidate($payment->created_at)
Date (in AD): {{ $payment->created_at->format('M d, Y, h:i A') }}
Receipt #: {{ sprintf('RCP-%06d', $payment->id) }}
Payment Information
Payment ID: {{ $payment->id }}
Transaction ID: {{ $payment->transaction_id }}
@if ($payment->ref_id)
Reference ID: {{ $payment->ref_id }}
@endif
Payment Method: {{ strtoupper($payment->gateway) }}
Status: {{ $payment->normalized_status }}
Verified: {{ $payment->verified ? 'Yes' : 'No' }}
@if ($payment->pidx)
Payment Index: {{ $payment->pidx }}
@endif
@if ($payment->member)
Member Information
Member ID: {{ $payment->member->member_id }}
Name: {{ $payment->member->name_en }}
@if ($payment->member->email)
Email: {{ $payment->member->email }}
@endif @if ($payment->member->phone)
Phone: {{ $payment->member->phone }}
@endif @if ($payment->member->member_type)
Type: {{ ucfirst($payment->member->member_type) }}
@endif @if ($payment->member->status)
Status: {{ ucfirst($payment->member->status) }}
@endif
@endif
Membership Fee: Rs. {{ number_format($payment->membership_amount ?? 0, 2) }}
Service Charge: Rs. {{ number_format($payment->service_charge ?? 0, 2) }}
Total Amount: Rs. {{ number_format($payment->total_amount, 2) }}
@if ($payment->isSuccessful())
Verified: Payment successfully processed and verified.
@elseif($payment->isPending())
Pending: Payment is being processed.
@else
Issue: Payment not completed. Contact support if needed.
@endif
Important: This receipt is for your records. Please ensure the payment details are correct. And save it for future reference.