@extends('admin.layout') @section('sidebar', 'overlay-sidebar') @section('styles') @endsection @section('content')
@includeIf('admin.pos.partials.cats-items')
@csrf

Use Country Code in phone number

Enter customer phone first.
@if ($be->delivery_date_time_status == 1)
@endif
@if ($bs->postal_code == 0) @if (count($scharges) > 0)
@foreach ($scharges as $scharge)
first ? 'checked' : ''}} data-free_delivery_amount="{{$scharge->free_delivery_amount}}"> + {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}}{{$scharge->charge}}{{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}
@if (!empty($scharge->free_delivery_amount))

(@lang('Free Delivery for Orders over') {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}}{{$scharge->free_delivery_amount - 1}}{{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}})

@endif

{{$scharge->text}}

@endforeach
@endif @else
@endif

Ordered Foods

@if (empty($cart))

NO ITEMS ADDED

@else
@foreach ($cart as $key => $item) @php $id = $item["id"]; $product = App\Models\Product::findOrFail($id); @endphp @endforeach
Item Qty Price ({{$be->base_currency_symbol}})
{{convertUtf8($item['name'])}}
@if (!empty($item["variations"]))

{{__("Variation")}}:
@php $variations = $item["variations"]; @endphp @foreach ($variations as $vKey => $variation) {{str_replace("_"," ",$vKey)}}: {{$variation["name"]}} @if (!$loop->last) , @endif @endforeach

@endif @if (!empty($item["addons"]))

{{__("Add On's")}}: @php $addons = $item["addons"]; @endphp @foreach ($addons as $addon) {{$addon["name"]}} @if (!$loop->last) , @endif @endforeach

@endif
{{$item['total']}}
  • Subtotal {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}} {{posCartSubTotal()}} {{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}
  • Tax + {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}} {{posTax()}} {{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}
  • Shipping Charge + {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}} {{posShipping()}} {{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}
  • Total {{$be->base_currency_symbol_position == 'left' ? $be->base_currency_symbol : ''}} {{posCartSubTotal() + posTax() + posShipping()}} {{$be->base_currency_symbol_position == 'right' ? $be->base_currency_symbol : ''}}
@endif
{{-- Calculator Modal --}} {{-- Variation Modal Starts --}} @includeIf('front.partials.variation-modal') {{-- Variation Modal Ends --}}
@endsection @section('scripts') @if (Session::has('success') && $onTable->pos == 1 && Session::has('previous_serving_method') && Session::get('previous_serving_method') == 'on_table') @endif {{-- START: Home delivery extra fields javascript --}} {{-- END: Home delivery extra fields javascript --}} @endsection