@extends('layouts.app') @section('content')
{{ $customerName }}
@if($direccion)Dirección de entrega {{ $direccion }}
@if($mapsLink)📍 Ver ubicación en Google Maps
@endif @endif {{-- WhatsApp --}}WhatsApp @if($waDigits && strlen($waDigits) >= 10) {{ $waPretty }} @else — @endif
Correo electrónico {{ $customerModel->email ?? 'No proporcionado' }}
| Importe total: | ${{ number_format($quote->total, 2) }} |
| Dinámica / Evento: | {{ $quote->dynamic_info }} |
| Producto / Servicio | Cantidad | Precio Unitario | Total |
|---|---|---|---|
| {{ $item->inventory->name }} | {{ $item->quantity }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_price, 2) }} |
|
Diseño aprobado @if($fileUrl && ($isImage || $isPdf)) @if($isImage) |
{{-- Etiquetas de totales --}}
Sub Total: Descuento: Adicional por prioridad: Envío: Base sin IVA: IVA: Gran Total: Pagos / Anticipo: Saldo: |
{{-- Valores de totales --}}
${{ number_format($subtotal, 2, '.', ',') }} ${{ number_format($descuento, 2, '.', ',') }} ${{ number_format($extra, 2, '.', ',') }} ${{ number_format($envio, 2, '.', ',') }} ${{ number_format($baseSinIVA, 2, '.', ',') }} ${{ number_format($iva, 2, '.', ',') }} ${{ number_format($totalConIVA, 2, '.', ',') }} @if($pagos > 0)${{ number_format($pagos, 2, '.', ',') }} @else${{ number_format(0, 2, '.', ',') }} @endif @if($saldo > 0)${{ number_format($saldo, 2, '.', ',') }} @else${{ number_format($saldo, 2, '.', ',') }} @endif |