@extends('app') @section('content') @unless(Auth::check() and Auth::user()->is_regional) {!! Form::open(['method' => 'GET'])!!}
{!! Form::select('region_id', [NULL => 'Todas las regiones'] + $regions, Input::get('region_id'), ['class' => 'form-control']) !!}
{!! Form::select('progress', [NULL => 'Avance'] + $progress, Input::get('progress'), ['class' => 'form-control']) !!}
{!! Form::close() !!} @endunless @if ($executives->count())
{{-- TODO: Improve non-laravel solution for getting query string parameters --}} Descargar Excel
@endif @if ($executives->count())
@include('reports.templates.feedback')
{!! $executives->appends(Input::all())->render() !!}
@else
Lo sentimos... No hay ejecutivos que mostrar.
@endif @endsection