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

Reportes de Carga

Gasolina

@if ($report_tarjetas->count() > 0) {!! Form::open([ 'method' => 'POST', 'url' => url('gasreport_tarjetasfilter') ]) !!}
{!! Form::label('fecha', 'Fecha') !!} {!! Form::date('fecha', \Carbon\Carbon::today()->format('Y-m-d'), ['class' => 'form-control'],request()->input('fecha')) !!}
{!! Form::close() !!}
@foreach($report_tarjetas->reverse() as $ReportGas) @endforeach
FECHA DE ENVIO Reporte
{{ $ReportGas->fecha }} {!! Form::open(['method' => 'POST','url' => url('excelgas_report_tarjetas') ]) !!} {!! Form::close() !!}
@else
No hay registros que mostrar
@endif
@endsection