@if(!empty($bill->order_id))
| OrderId
|
: {{ $bill->order_id}} |
@endif
@if(!empty($bill->transaction_reference_number))
| Reference Number |
: {{$bill->transaction_reference_number}} |
@endif
@if($bill->discount > 0)
@if($bill->subtotal>0)
| Amount |
: INR {{ $bill->subtotal}}/- |
@endif
@if($bill->discount>0)
| Discount |
: INR {{ $bill->discount}}/- |
@endif
@endif
@if($bill->total>0)
| Net Amount |
: INR {{ $bill->total}}/- |
@endif
@if(!empty($bill->payment_complete_date))
| Paid At |
: {{date('d-m-Y h:i A',strtotime($bill->payment_complete_date))}} |
@else
| Paid At |
: {{date('d-m-Y h:i A',strtotime($bill->transaction_completed_at))}} |
@endif
@if(!empty($bill->mode_name))
| Payment Mode |
: {{ $bill->mode_name === "FretBox" ? "Online" : $bill->mode_name }} |
@endif
@if(!empty($bill->transaction_payment_status))
| Bill Status |
: {{$bill->bill_status}} |
@endif