{{translate('INVOICE')}}
{{translate('Invoice To')}}:
@php $firstName = @$order->billingAddress ? @$order->billingAddress->first_name : @$order->billing_information->first_name ; $lastName = @$order->billingAddress ? @$order->billingAddress->last_name : @$order->billing_information->last_name ; $phone = @$order->billingAddress ? @$order->billingAddress->phone : @$order->billing_information->phone ; $email = @$order->billingAddress ? @$order->billingAddress->email : @$order->billing_information->email ; $city = @$order->billingAddress ? @$order->billingAddress->city->name : @$order->billing_information->city ; $country = @$order->billingAddress ? @$order->billingAddress->country->name : @$order->billing_information->country ; $zip = @$order->billingAddress ? @$order->billingAddress->zip : @$order->billing_information->zip ; $address = @$order->billingAddress ? @$order->billingAddress->address->address : @$order->billing_information->address ; @endphp{{@$firstName }} {{@$lastName }}
{{@$address}}, {{@$country}} ,{{@$city}} {{@$zip}} {{@$email}} {{@$phone}}{{translate('Invoice')}}# {{$order->order_id}}
{{translate('Date')}} {{get_date_time($order->created_at, 'd-m-Y')}}
{{translate('Status')}} @php echo order_status_badge($order->status) @endphp
{{translate('Shipping Information')}}
{{translate('Name')}} | {{translate('Duration')}} | {{translate('Price')}} |
---|---|---|
{{(@$order->shipping->name)}} | {{(@$order->shipping->duration)}} {{translate('Days')}} | {{@(short_amount(@$order->shipping->price))}} |
{{translate('Product Information')}}
{{translate('Item Description')}} | {{translate('Price')}} | {{translate('Qty')}} | {{translate('Total')}} |
---|---|---|---|
{{($orderDetail->product->name)}} | {{(short_amount($orderDetail->total_price/$orderDetail->quantity))}} | {{$orderDetail->quantity}} | {{(short_amount($orderDetail->total_price))}} |
{{translate('Total')}} : | {{(short_amount($subtotal))}} |
{{translate('Original Total')}} : {{(short_amount($originalPrice))}}
{{translate('Tax amount')}} : {{(short_amount($tax))}}
{{translate('Discount')}} : {{(short_amount($discount))}}
{{translate('Sub Total')}} : {{(short_amount($subtotal))}}
@if($order->shipping_deliverie_id){{translate('Shipping Cost')}} : {{(short_amount($order->shipping_charge))}}
@endif{{translate('Total')}}: {{(short_amount($order->shipping_charge + $subtotal))}}