Hi {{ $order_content->name ?? '' }},
@if(!empty($location))
{{ $location->invoice_description ?? '' }}
@endif
{{ $order->order_no }}
|
{{ $order->created_at->format('d-F-Y') }}
|
Payment status : @if($order->payment_status==2)
Pending
@elseif($order->payment_status==1)
Paid
@elseif($order->payment_status==0)
Fail
@elseif($order->payment_status==3)
Incomplete
@endif
|
Order Status : {{ ucfirst(str_replace('-',' ',$order->status)) }}
|
|
Description
|
Amount
|
@foreach($order->order_item_with_file as $key=>$orderitem)
@endforeach
@if($order_content->coupon_discount > 0)
@endif
@if($order->order_type == 1)
@endif
|
@if(!empty($location))
Cheers,
{{ $location->company_name }}
@endif
|