{{-- Información Extra --}}
@foreach ($detalleCotizacion as $dc)
TIENDA: {{ $dc->extra->tienda->nombre ?? 'N/A' }}
RUT: {{ $dc->rut ?? 'N/A' }}
NOMBRE: {{ $dc->nombre ?? 'N/A' }}
CORREO: {{ $dc->correo ?? 'N/A' }}
FONO: {{ $dc->fono ?? 'N/A' }}
DIRECCIÓN: {{ $dc->direccion ?? 'N/A' }}
@break
@endforeach
| ID |
SKU |
Producto |
Precio |
Cantidad |
Total |
@foreach ($detalleCotizacion as $dc)
@foreach ($dc->detalles as $detalle)
| {{ $detalle->producto_id }} |
{{ $detalle->sku }} |
{{ $detalle->producto_nombre }} |
{{ Currency::currency("CLP")->format($detalle->producto_precio) }} |
{{ $detalle->cantidad }} |
{{ Currency::currency("CLP")->format($detalle->producto_precio * $detalle->cantidad) }} |
@endforeach
@endforeach
@foreach ($detalleCotizacion as $dc)
Costo Envio: {{Currency::currency("CLP")->format($dc->extra->costo_envio)}}
Neto: {{Currency::currency("CLP")->format($dc->extra->total_neto)}}
IVA 19%: {{Currency::currency("CLP")->format($dc->extra->tax)}}
Bruto: {{Currency::currency("CLP")->format($dc->extra->total_bruto)}}
Descuento: {{Currency::currency("CLP")->format($dc->extra->descuento)}}
Total: {{Currency::currency("CLP")->format($dc->extra->total_pago)}}
|
@endforeach