| Plus | Precio Carta | Puntos Utilidad | Nombre |
|---|---|---|---|
| {{ $plus->plus }} | {{ number_format((float) $plus->p_carta, 0, ',', '.') }} | @php $__pu = $plus->puntos_utilidad; if ($__pu === null || $__pu === '') { $__puFmt = '—'; } else { $__n = (float) $__pu; $__s = number_format($__n, 12, ',', '.'); if (strpos($__s, ',') !== false) { $__s = rtrim($__s, '0'); $__s = rtrim($__s, ','); } $__puFmt = $__s; } @endphp {{ $__puFmt }} | {{ $plus->nombre }} |
| Cant. o Uni. | Detalle MercaderÃas e Insumos | Costo x Uni. | Total P/Costo |
|---|---|---|---|
| {{ number_format((float) $detalle->cantidad, 3, ',', '.') }} | {{ $detalle->detalle_insumos }} | {{ number_format((float) $detalle->costo_x_unidad, 0, ',', '.') }} | ${{ number_format(round((float) $detalle->cantidad * (float) $detalle->costo_x_unidad), 0, ',', '.') }} |