{{ trans('order.Billing To') }}:
{{ $order->client ? $order->client->name : 'unknown' }}
{{ $order->client->phone }}
{{ $order->client->email }}
{{ $order->address ? $order->address->city . ' - ' . $order->address->address : 'unknown' }}
{{ trans('order.Invoice ID') }} :
{{ $order->invoice_number }}
{{ trans('order.Date') }} :
{{ \Carbon\Carbon::parse($order->date)->format('d, M Y') }} - {{ \Carbon\Carbon::parse($order->time)->format('h:i A') }}
{{ trans('order.Due Amount') }} :
{{ $order->branch->country->currency_symbol }} {{ $order->total_price_after_tax }}
| {{ trans('order.Item') }} | {{ trans('order.Qty') }} | {{ trans('order.Price') }} | {{ trans('order.Total') }} | ||
|---|---|---|---|---|---|
| عرض {{ $detail->offer->name_ar }} | @if ($detail->offer->discount_type == 'fixed') | {{ $order->branch->country->currency_symbol }}{{ $detail->offer->discount_value }} | @else{{ $order->branch->country->currency_symbol }}{{ $detail->total }} | @endif @if ($detail->offer->discount_type == 'fixed'){{ $order->branch->country->currency_symbol }}{{ $detail->offer->discount_value }} | @else{{ $order->branch->country->currency_symbol }}{{ $detail->price_after_tax }} | @endif
| {{ $offer_detail->dish->name_ar }} | {{ $offer_detail->count }} | {{ $detail->offer->discount_type == 'fixed' ? '$0' : $detail->total }} | {{ $order->branch->country->currency_symbol }} {{ $detail->price_after_tax }} | ||
| {{ $detail->dish->name_ar . ' | ' . $detail->dish->name_en }} | {{ $detail->quantity }} | {{ $order->branch->country->currency_symbol }}{{ $detail->total }} | {{ $order->branch->country->currency_symbol }}{{ $detail->price_befor_tax }} | ||
| {{ $addon->Addon->addons->name_ar . ' | ' . $addon->Addon->addons->name_en }} | {{ $addon->quantity }} | {{ $order->branch->country->currency_symbol }}{{ $addon->price_before_tax }} | {{ $order->branch->country->currency_symbol }} {{ $addon->price_after_tax }} | ||
| {{ trans('order.Total Before Tax') }}: | {{ $order->branch->country->currency_symbol }} {{ $order->total_price_befor_tax }} | ||||
| {{ trans('order.Tax') }} ({{ getBranchSettings($order->branch_id, 'tax_percentage') }}%): | {{ $order->branch->country->currency_symbol }} {{ $order->tax_value }} | ||||
| {{ trans('order.Service') }}: | {{ $order->branch->country->currency_symbol }}{{ $order->service_fees }} | ||||
| {{ trans('order.Total After Tax') }}: | {{ $order->branch->country->currency_symbol }} {{ $order->total_price_after_tax }} | ||||