| # Orden | Fecha Compra | RUT | Nombre Completo | Total | Fecha Pago | Status | Fecha Notificacion | Fecha Retiro | Acciones |
|---|---|---|---|---|---|---|---|---|---|
| {{$item->orden}} | {{$item->fecha}} | {{$item->rut}} | {{$item->nombre .' '. $item->ap_pat .' '. $item->ap_mat}} | {{$item->orden_total = Currency::currency('CLP')->format($item->orden_total ?? 0.00);}} | {{$item->pago_fecha}} | {{$item->retiro_status ?? "SIN RETIRAR"}} | {{$item->fecha_notificacion ?? "SIN NOTIFICAR"}} | {{ $item->retiro_status == 'RETIRADO' ? ($item->fecha_retiro ?? "SIN NOTIFICAR") : "SIN RETIRAR" }} | {{-- @if($item->retiro_status == 'NOTIFICADO') --}} Retiro {{-- @endif --}} @if(empty($item->fecha_notificacion)) @endif @if($item->retiro_status == 'PENDIENTE') Pendientes @endif @if($item->retiro_status == 'RETIRADO') @endif |