{{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @endif @foreach($order->order_items as $item) @endforeach

Thank you for placing your order with {{ $restaurant->name }} ! We’re excited to prepare your delicious meal.

{{ $item['item_name'] ?? '' }}

Qty: {{ $item['quantity'] ?? 1 }}

${{ number_format( (float) ($item['final_price'] ?? 0.00), 2) }}

 
  @if($discount = checkOrderLevelDiscount($order)) @endif

Subtotal: 

${{ number_format( (float) ($order->sub_total ?? 0.00), 2)}}

Delivery Fees: 

${{ number_format(($order->delivery_fee ?? 0.00), 2) }}

Tax & Fees: 

${{ number_format(($order->sub_total ?? 0.00) * 0.06, 2) + number_format(($order->custom_charge ?? 0.00), 2) }}

Discount (Promo: {{ $order->promo_code ?? '' }}): 

${{ number_format($discount, 2)}}

Total: 

${{ number_format( (float) ($order->sub_total ?? 0.00), 2) + number_format(($order->sub_total ?? 0.00) * 0.06, 2) + number_format(($order->custom_charge ?? 0.00), 2) }}

Tip amount: 

${{ number_format(($order->tip_amount ?? 0.00), 2) }}

Grand Total: 

${{ number_format( (float) ($order->sub_total ?? 0.00) + number_format(($order->sub_total ?? 0.00) * 0.06, 2) + number_format(($order->custom_charge ?? 0.00), 2) + ($order->tip_amount ?? 0.00), 2) }}

 

If you have any questions or need to modify your order, feel free to reply to this email or visit our [Visit our website](https://{{$restaurant->domain}}.eaterli.com). We’re here to help you every step of the way. We look forward to serving you!
{{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else @lang('Regards'),
{{ $name ?? config('app.name') }} @endif {{-- Subcopy --}} @slot('subcopy') @isset($actionText) @lang( "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\n". 'into your web browser:', [ 'actionText' => $actionText, ] ) [{{ $displayableActionUrl }}]({{ $actionUrl }}) @endisset

This email was sent from a notification-only address that cannot accept incoming email. Please do not reply to this message.

@endslot