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

Reportes Generales

Gasolina

@if ($gas_montos->count() > 0)
{!! Form::open(['method' => 'POST','url' => url('excelgas') ]) !!}
{!! Form::close() !!}
@else @endif
@if ($gas_montos->count() > 0) {!! Form::open([ 'method' => 'POST', 'url' => url('gasreport') ]) !!}
{!! Form::label('fecha', 'Fecha') !!} {!! Form::date('fecha', \Carbon\Carbon::today()->format('Y-m-d'), ['class' => 'form-control'],request()->input('fecha')) !!}
{!! Form::text('identificador_filter', request()->input('identificador_filter'), ['class' => 'form-control', 'id' => 'filter_identificador']) !!}
{!! Form::close() !!}
@foreach($gas_montos as $PurseGas) @endforeach
NOMBRE DEL TRABAJADOR ID TGS SI VALE IDENTIFICADOR NO. TARJETA CONCEPTO ESTATUS FECHA DE FONDEO MONTO DE FONDEO NUMERO DE EMPLEADO
{{ $PurseGas->nombre_trabajador}} {{ $PurseGas->id_tgs_si_vale }} {{ $PurseGas->identificador }} {{ number_format($PurseGas->no_tarjeta,0,'.','') }} {{ $PurseGas->concepto }} {{ $PurseGas->estatus }} {{ $PurseGas->fecha_de_fondeo }} ${{ number_format($PurseGas->monto_de_fondeo,2) }} {{ $PurseGas->empleado }}
@else
No hay registros que mostrar
@endif
@endsection @section('script') @endsection