| # Registro | # Nro. Orden | Usuario Compra | Total | Tipo Entrega | Fecha Ingreso | Estado Retiro | Fecha Notificacion | Fecha Retiro | Acciones |
|---|---|---|---|---|---|---|---|---|---|
| {{$venta->venta_ml_id}} | {{$venta->venta_nro_ml}} | {{$venta->usuario_ml}} | {{Currency::currency('CLP')->format(round($venta->total_venta * 1.19 ?? 0.00))}} | {{$venta->tipo_venta_texto}} | {{$venta->fecha_venta_ml}} | {{optional($venta->retiros)->status ?? "SIN RETIRAR"}} | {{$venta->notificaciones->created_at ?? "SIN NOTIFICAR"}} | {{ optional($venta->retiros)->status == 'RETIRADO' ? ($venta->retiros->updated_at ?? "SIN NOTIFICAR") : "SIN RETIRAR" }} | @if(optional($venta->retiros)->status == "NOTIFICADO") Retiro @endif @if(optional($venta->retiros)->status == 'SIN NOTIFICAR') @endif @if(optional($venta->retiros)->status == 'PENDIENTE') Pendientes @endif @if(optional($venta->retiros)->status == 'RETIRADO') PDF @endif |