Muftaax

Invoice: #{{ $order->id }}

Date Issued: {{ $order->created_at->format('d M, Y - h:iA') }}
Delivered Date: -

Billing From:
{{ $order->restaurant->name }}
Billing To:
{{ $order->order_user->name }}
Billing Address:
{{ optional($order->deliveryAddress)->full_address }}

{{-- --}} @foreach($order->order_data as $item) {{-- --}} @endforeach
NameDetail Quantity Price Per Unit Total
{{ $order->order_user->name }}{{ $item['title'] ?? 'N/A' }} {{ $item['quantity'] ?? 0 }} ${{ $item['price'] ?? '0.00' }} ${{ $item['cal_price'] ?? '0.00' }}
@if($order->order_data)

Sub Total: ${{ $order->sub_total }}

@else

Sub Total: $0

@endif @if($order->order_data)

Total: ${{ $order->total }}

@else

Total: $0

@endif