@if(!empty($transaction->order_id))
| OrderId
|
: {{ $transaction->order_id}} |
@endif
@if(!empty($transaction->reference_number))
| Reference Number |
: {{$transaction->reference_number}} |
@endif
@if($transaction->discount > 0)
@if(!empty($transaction->subtotal))
| Amount |
: INR {{ $transaction->subtotal}}/- |
@endif
@if(!empty($transaction->discount))
| Discount |
: INR {{ $transaction->discount}}/- |
@endif
@endif
@if(!empty($transaction->total))
| Net Amount |
: INR {{ $transaction->total}}/- |
@endif
@if($isMessPaymentByFretbox==1)
@if(!empty($transaction->payment_complete_date))
| Paid At |
: {{date('d-m-Y h:i A',strtotime($transaction->payment_complete_date))}} |
@else
| Paid At |
: {{date('d-m-Y h:i A',strtotime($transaction->completed_at))}} |
@endif
@endif
@if(!empty($transaction->mode_name))
| Payment Mode |
: {{ $transaction->mode_name === "FretBox" ? "Online" : $transaction->mode_name }} |
@endif
@if(!empty($transaction->payment_status))
| Payment Status |
: {{$transaction->payment_status}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->hostel_name) &&$receiptInfoBySetting->hostel_name=="true")
| Hostel Name |
: {{$transaction->building_name}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->kitchen_name) && $receiptInfoBySetting->kitchen_name=="true")
| Kitchen Name |
: {{$transaction->kitchen_name}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->outlet_name) && $receiptInfoBySetting->outlet_name=="true")
| Outlet Name |
: {{$transaction->outlet_name}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->meal_for) && $receiptInfoBySetting->meal_for=="true")
| Meal For |
: {{join(',', array_map('ucfirst', explode(',', $transaction->meal_for)))}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->package_name) && $receiptInfoBySetting->package_name=="true")
| Package Name |
: {{$transaction->package_name}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->package_type) &&$receiptInfoBySetting->package_type=="true")
| Package Type |
: {{ucfirst($transaction->package_type)}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->package_duration) && $receiptInfoBySetting->package_duration=="true")
| Package Duration |
From : {{date('M Y',strtotime($transaction->start_date))}} Till : {{date('M Y',strtotime($transaction->end_date))}} |
@endif
@if(isset($receiptInfoBySetting) && isset($receiptInfoBySetting->session_name) && $receiptInfoBySetting->session_name=="true")
| Session Name |
: {{$transaction->session_name}} |
@endif
| Booked For |
: Mess |