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

Reportes

Tarjetas / Incentivos

@if ($report_tarjetas->count() > 0) {!! Form::open([ 'method' => 'POST', 'url' => url('incentivesreport_tarjetasfilter') ]) !!}
{!! Form::label('fecha', 'Fecha') !!} {!! Form::date('fecha', \Carbon\Carbon::today()->format('Y-m-d'), ['class' => 'form-control'],request()->input('fecha')) !!}
{!! Form::label('region', 'Filtrar por Regiones') !!} {!! Form::select('region', array_merge([null => 'Todos'], ZurichMonederos\PurseIncentive::REGIONES), request()->input('region'), ['class' => 'form-control']) !!}
{!! Form::close() !!}
@foreach($report_tarjetas as $ReportIncentive) @endforeach
FECHA DE ENVIO REGIONES
{{ $ReportIncentive->fecha }} {{ $ReportIncentive->region }} {!! Form::open(['method' => 'POST','url' => url('excelincentivos_report_tarjetas') ]) !!}
{!! Form::close() !!}
@else
No hay registros que mostrar
@endif
@endsection