@if ($facturesGas->count() > 0)
CONCEPTO |
MONTO FONDEO |
COMISIÓN |
TOTAL FACTURA |
FECHA FONDEO2 |
MES |
NÚMERO DE PEDIDO |
AÑO |
@foreach($facturesGas as $TotalFacture)
{{ $TotalFacture->concepto}} |
${{ number_format($TotalFacture->monto_fondeo,2)}} |
${{ number_format($TotalFacture->comision,2)}} |
${{ number_format($TotalFacture->monto_fondeo + $TotalFacture->comision,2)}} |
{{ $TotalFacture->fecha_fondeo}} |
{{ $TotalFacture->mes}} |
{{ $TotalFacture->numero_pedido}} |
{{ $TotalFacture->anio}} |
@endforeach
|
${{number_format($totalgas,2)}} |
|
${{number_format($totalgasFacturado,2)}} |
|
|
|
|
DISPONIBILIDAD |
${{number_format($totalgas-$totalMontoGas,2)}} |
@else
No hay registros que mostrar
@endif
@if ($facturesIncentivos->count() > 0)
CONCEPTO |
MONTO FONDEO |
COMISION |
TOTAL FACTURADO |
FECHA FONDEO2 |
MES |
NUMERO DE PEDIDO |
AÑO |
@foreach($facturesIncentivos as $TotalFacture)
{{ $TotalFacture->concepto}} |
${{ number_format($TotalFacture->monto_fondeo,2)}} |
${{ number_format($TotalFacture->comision,2)}} |
${{ number_format($TotalFacture->monto_fondeo + $TotalFacture->comision,2)}} |
{{ $TotalFacture->fecha_fondeo}} |
{{ $TotalFacture->mes}} |
{{ $TotalFacture->numero_pedido}} |
{{ $TotalFacture->anio}} |
@endforeach
|
${{number_format($totalincentivos,2)}} |
|
${{number_format($totalincentivosFacturado,2)}} |
|
|
|
|
DISPONIBLE |
${{number_format($totalincentivos-$totalMontoIncentivos,2)}} |
@else
No hay registros que mostrar
@endif
@if ($facturesViaticos->count() > 0)
CONCEPTO |
MONTO FONDEO |
COMISION |
TOTAL |
FECHA FONDEO2 |
MES |
NUMERO DE PEDIDO |
AÑO |
@foreach($facturesViaticos as $TotalFacture)
{{ $TotalFacture->concepto}} |
${{ number_format($TotalFacture->monto_fondeo)}}.00 |
${{ number_format($TotalFacture->comision)}}.00 |
${{ number_format($TotalFacture->monto_fondeo + $TotalFacture->comision)}}.00 |
{{ $TotalFacture->fecha_fondeo}} |
{{ $TotalFacture->mes}} |
{{ $TotalFacture->numero_pedido}} |
{{ $TotalFacture->anio}} |
@endforeach
|
${{number_format($totalviaticos)}}.00 |
|
|
|
|
|
|
DISPONIBLE |
${{number_format($totalviaticos-$totalMontoViaticos)}}.00 |
@else
No hay registros que mostrar
@endif