| # Registro | # Orden | Usuario Compra | Tipo Entrega | Fecha Ingreso | Estado Retiro | Fecha Notificacion | Fecha Retiro | Acciones |
|---|---|---|---|---|---|---|---|---|
| {{$venta->venta_ml_id}} | {{$venta->venta_nro_ml}} | {{$venta->usuario_ml}} | {{$venta->tipo_venta_texto}} | {{$venta->created_at}} | {{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(empty($venta->retiros->created_at)) @endif @if(optional($venta->retiros)->status == 'PENDIENTE') Pendientes @endif @if(optional($venta->retiros)->status == 'RETIRADO') PDF @endif |