@extends('frontend.layouts.master') @section('content') checkout (verificar) home Verificar Seleccionar dirección Añadir dirección Agregar nueva dirección @csrf Seleccionar área @foreach ($deliveryAreas as $area) {{ $area->area_name }} @endforeach Casa o Apartamento Oficina Cancelar Guardar Dirección @foreach ($addresses as $address) @if ($address->type === 'home') Casa o Apartamento @else Oficina @endif {{ $address->address }}, {{ $address->deliveryArea?->area_name }} @endforeach total cart subtotal: {{ currencyPosition(cartTotal()) }} entrega: $00.00 @if (session()->has('coupon')) descuento: {{ currencyPosition(session()->get('coupon')['discount']) }} @else descuento: {{ currencyPosition(0) }} @endif total: {{ currencyPosition(grandCartTotal()) }} Proceder al pago @endsection @push('scripts') @endpush
subtotal: {{ currencyPosition(cartTotal()) }}
entrega: $00.00
descuento: {{ currencyPosition(session()->get('coupon')['discount']) }}
descuento: {{ currencyPosition(0) }}
total: {{ currencyPosition(grandCartTotal()) }}