{{ $order_number }}

{{ $kitchen_name }}

{{ $formattedDateTime }}

{{ $user_name }}

{{ $deliveryTime }}

{{ $status }} on {{ $time }}

@if($status == "Cancelled")

{{ $status }}

@else

{{ $status }}

@endif
@if($status == "Cancelled")

Cancel Reason :{{ $cancel_reason }}

@endif

Mode of Payment

{{ $pay_mode }}

{{ $itemCount }} ITEMS

@if (count($orderDetails) > 0) @foreach ($orderDetails as $orderDetail)

{{ $orderDetail->item_name }} x {{ $orderDetail->quantity }}

₹{{ number_format($orderDetail->item_mrp_price,2) }}

@endforeach @endif
Sub Total

Delivery Charge

Packing Charge

@if($tip_amount)

Tip Amount

@endif @if($coupon_amount)

Coupon Discount

@endif

Taxes & Charges

@if($wallet_amount)

Wallet Amount

@endif
₹{{ number_format($sub_total, 2) }}

₹{{ number_format($deliveryCharge, 2) }}

₹{{ number_format($packingCharge, 2) }}

@if($tip_amount)

₹{{ number_format($tip_amount, 2) }}

@endif @if($coupon_amount)

(-)₹{{ number_format($coupon_amount, 2) }}

@endif

₹{{ number_format($tax, 2) }}

@if($wallet_amount)

(-)₹{{ number_format($wallet_amount, 2) }}

@endif

Grand Total

₹{{ number_format($grandTotal, 2) }}