Resaurant : {{ $order->restaurant->restaurant_info->name }}

Mobile : {{ $order->restaurant->restaurant_info->mobile_country_code . '' . $order->restaurant->restaurant_info->mobile }}

VAT Registration number : 0000000000

Location : {{ $order->restaurant->restaurant_info->address_description }}

Date: {{ $order->payment_date_format }}

Invoice No: #{{ $order->order_num }}

@if ($order->type == 'delivery') @endif

Client :
Name : {{ $order->client->name }}
Email : {{ $order->client->email }}
mobile : {{ $order->client->mobile_country_code }} {{ $order->client->mobile }}

Location :
City : {{ $order->city->name }}
Region: {{ $order->region->name }}
Address : {{ $order->address }}
Mobile : {{ $order->address_number }}

@foreach ($order->items as $item) @endforeach @if ($order->discount_value == 0) @else @endif @if ($order->discount_value != 0) @endif
Product Price QTY Total
{{ $item->product->name }} @if ($item->combination)
    @foreach ($item->combination as $combination) @php $attribute = \App\Models\Attribute::where( 'id', $combination['attr_id'], )->first(); $value = \App\Models\AttributeValue::where( 'id', $combination['value'], )->first(); @endphp @if ($attribute)
  • {{ $attribute->name }} : {{ $value?->name ?? '' }}
  • @endif @endforeach
@endif @if ($item->add_ons)
    @foreach ($item->add_ons as $add_on)
  • {{ $add_on->add_on->name }} : {{ $add_on->price }}
  • @endforeach
@endif
{{ $item->price }} {{ $item->qty }} {{ $item->total }}
Sub Total: {{ $order->sub_total }}
Tax : {{ $order->vat_value }}
Shipping : {{ $order->shipping_value }}
Total: {{ $order->total }} AED {{ $order->total + $order->discount_value }}
Discount : {{ $order->discount_value }}
Total after discount : {{ $order->total }} AED