| {{ $loop->index + 1 }} |
{{ $item->RESS_NOMBRE }} |
{{ $item->pedidosEfectivo }} |
{{ $item->pedidosTarjeta }} |
{{ $item->pedidosPuntos }} |
{{ $item->pedidosCriptomonedas }} |
{{ $item->pedidosTransferencias }} |
{{ $item->pedidos }} |
$
{{ number_format($item->subtotal, 2) }} |
$
{{ number_format($item->comisionComercio, 2) }} |
$
{{ number_format($item->comisionCliente, 2) }} |
$
{{ number_format($item->envio, 2) }} |
$
{{ number_format($item->subtotal + $item->comisionComercio + $item->comisionCliente + $item->envio, 2) }}
|
$
{{ number_format($item->costoVenta, 2) }} |
$
{{ number_format($item->descuentoApp, 2) }} |
$
{{ number_format($item->costoVenta + $item->descuentoApp, 2) }}
|
$
{{ number_format($item->subtotal - $item->costoVenta + $item->comisionComercio + $item->comisionCliente + ($item->envio - $item->descuentoApp), 2) }}
|
@endforeach
| TOTALES |
{{ $totalPedidosEfectivo }} |
{{ $totalPedidosTarjeta }} |
{{ $totalPedidosPuntos }} |
{{ $totalPedidosCriptomonedas }} |
{{ $totalPedidosTransferencias }} |
{{ $totalPedidos }} |
$
{{ number_format($totalSubtotal, 2) }} |
$
{{ number_format($totalComisionComercio, 2) }} |
$
{{ number_format($totalComisionCliente, 2) }} |
$
{{ number_format($totalEnvio, 2) }} |
$
{{ number_format($totalSubtotal + $totalComisionComercio + $totalComisionCliente + $totalEnvio, 2) }}
|
$
{{ number_format($totalCostoVenta, 2) }} |
$
{{ number_format($totalDescuentoApp, 2) }} |
$
{{ number_format($totalCostoVenta + $totalDescuentoApp, 2) }}
|
$
{{ number_format($totalSubtotal - $totalCostoVenta + $totalComisionComercio + $totalComisionCliente + ($totalEnvio - $totalDescuentoApp), 2) }}
|