@extends('layouts.front') @section('content') @section('css') @endsection @if (Auth::guard('customer')->check()) @php $customer = Auth::guard('customer')->user(); @endphp @endif @php $home = \App\HomePage::findorFail(1); @endphp

Checkout

Datos Del Cliente

Instrucciones especiales de la dirección

@if(!empty($checkoutSettings) && !empty($checkoutSettings->image)) Para Pedidos De Posters, Pudindes Y Ordenes Con Doble Entrega @endif

Tu Pedido

    Subtotal

    Tax

    Delivery Charges0.000

    Total

    @if(config('app.mod_loyalty') == true) @if(Auth::guard('customer')->check()) @php $lp = \App\LoyaltyPoints::first(); @endphp @if($lp && !empty($lp)) @if($lp->enabled_points == 1 && $lp->disabled_redeeming == 0) @php $customer = Auth::guard('customer')->user(); $lpc = \App\LoyaltyPointsCustomers::where('customer_id',$customer->id)->first(); @endphp

    Your points: {{isset($lpc->total_points)?$lpc->total_points:0}}


    @endif @endif @endif @endif @if(!empty($checkoutSettings) && !empty($checkoutSettings->note_delivery_charges))
    {{ $checkoutSettings->note_delivery_charges }}
    @else
    Please Note: Delivery charges apply separately for today's order and for any on the following day.
    @endif @if(!empty($checkoutSettings) && !empty($checkoutSettings->note_deliver_tomorrow))
    {{ $checkoutSettings->note_deliver_tomorrow }}
    @else
    Items marked "We deliver tomorrow" are shipped 24 hours after your order. Please check individual menu items for delivery timelines.
    @endif

    Pedido en los próximos días
    Una vez realizado el pedido no tendra cambios

       

    Método de Pago

    @if($settings->mop == 'both' || $settings->mop == 'cash')
    @endif @if($settings->mop == 'both' || $settings->mop == 'card')
    @endif
    @section('js') @if($settings->mop == 'both' || $settings->mop == 'card') @endif @if($settings->mop == 'both' || $settings->mop == 'cash') @endif @if(config('app.mod_loyalty') == true) @endif @endsection @endsection