@extends('app') @section('content')

Disponibilidad

Total Facturado

@if ($facturesGas->count() > 0)
@foreach($facturesGas as $TotalFacture) @endforeach
CONCEPTO MONTO FONDEO COMISIÓN TOTAL FACTURA FECHA FONDEO2 MES NÚMERO DE PEDIDO AÑO
{{ $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}}
${{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)
@foreach($facturesIncentivos as $TotalFacture) @endforeach
CONCEPTO MONTO FONDEO COMISION TOTAL FACTURADO FECHA FONDEO2 MES NUMERO DE PEDIDO AÑO
{{ $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}}
${{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)
@foreach($facturesViaticos as $TotalFacture) @endforeach
CONCEPTO MONTO FONDEO COMISION TOTAL FECHA FONDEO2 MES NUMERO DE PEDIDO AÑO
{{ $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}}
${{number_format($totalviaticos)}}.00
DISPONIBLE ${{number_format($totalviaticos-$totalMontoViaticos)}}.00
@else
No hay registros que mostrar
@endif
@endsection @section('modals') @endsection @section('script') @endsection