@if (Session::has('pos_serving_method') && !empty(Session::get('pos_serving_method')))
{{Session::get('pos_serving_method')}}
@endif

{{$bs->website_title}}

(Customer Copy) @php $addresses = explode(PHP_EOL, $bs->contact_address); @endphp

{{$addresses[0]}}

{{\Carbon\Carbon::now()}}

{{request()->getHttpHost()}}

@if (!empty($cart))
@foreach ($cart as $key => $item) @php $id = $item["id"]; $product = App\Models\Product::findOrFail($id); @endphp
{{$item['qty']}} X

{{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
{{$be->base_currency_text_position == 'left' ? $be->base_currency_text : ''}} {{$item['total']}} {{$be->base_currency_text_position == 'right' ? $be->base_currency_text : ''}}
@endforeach
Subtotal:
{{$be->base_currency_text_position == 'left' ? $be->base_currency_text : ''}} {{posCartSubTotal()}} {{$be->base_currency_text_position == 'right' ? $be->base_currency_text : ''}}
Tax:
+ {{$be->base_currency_text_position == 'left' ? $be->base_currency_text : ''}} {{posTax()}} {{$be->base_currency_text_position == 'right' ? $be->base_currency_text : ''}}
Delivery Charge:
+ {{$be->base_currency_text_position == 'left' ? $be->base_currency_text : ''}} {{posShipping()}} {{$be->base_currency_text_position == 'right' ? $be->base_currency_text : ''}}
Total:
{{$be->base_currency_text_position == 'left' ? $be->base_currency_text : ''}} {{posCartSubTotal() + posTax() + posShipping()}} {{$be->base_currency_text_position == 'right' ? $be->base_currency_text : ''}}
@endif