{{ trans('order.Billing To') }}:
{{ $order->client->name }}
{{ $order->client->phone }}
{{ $order->client->email }}
{{ $order->address->city }} - {{ $order->address->address }}
{{ 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->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') | ${{ $detail->offer->discount_value }} | @else${{ $detail->total }} | @endif @if ($detail->offer->discount_type == 'fixed')${{ $detail->offer->discount_value }} | @else${{ $detail->price_after_tax }} | @endif
| {{ $offer_detail->dish->name_ar }} | {{ $offer_detail->count }} | {{ $detail->offer->discount_type == 'fixed' ? '$0' : $detail->total }} | ${{ $detail->price_after_tax }} | ||
| {{ $detail->dish->name_ar . ' | ' . $detail->dish->name_en }} | {{ $detail->quantity }} | ${{ $detail->price_befor_tax }} | ${{ $detail->total }} | ||
| {{ $addon->Addon->addons->name_ar }} | {{ $addon->quantity }} | {{ $order->branch->country->currency_symbol }} {{ $addon->price_befor_tax }} | {{ $order->branch->country->currency_symbol }} {{ $addon->total }} | ||
| {{ trans('order.Total Before Tax') }}: | {{ $order->branch->country->currency_symbol }} {{ $order->total_price_befor_tax }} | ||||
| {{ trans('order.Tax') }} ({{ getSetting('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 }} | ||||