Billing To:
{{ $order->client->name }}
{{ $order->client->phone }}
{{ $order->client->email }}
{{ $order->address->city }} - {{ $order->address->address }}
Invoice ID: {{ $order->invoice_number }}
Date Issued: {{ \Carbon\Carbon::parse($order->date)->format('d, M Y') }} - {{ \Carbon\Carbon::parse($order->time)->format('h:i A') }}
Due Amount: ${{ $order->total_price_after_tax }}
| Item Name | Quantity | Price Per Unit | 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 }} | ${{ $addon->price_befor_tax }} | ${{ $addon->total }} | ||
| Total Before Tax: | ${{ $order->total_price_befor_tax }} | ||||
| Tax ({{ getSetting('tax_percentage') }}%): | ${{ $order->tax_value }} | ||||
| Fees: | ${{ $order->fees }} | ||||
| Total After Tax: | ${{ $order->total_price_after_tax }} | ||||