@extends('app') @section('content') @include('reports.partials.filters') @include('errors.partials.alert', ['errors' => $errors]) @if(isset($success))
{!!$success!!}
@endif
{{-- TODO: Improve non-laravel solution for getting query string parameters --}} Descargar Excel

@if ($reports->count())
@foreach($reports as $report) @endforeach
Ejecutivo Región Coordinador Fecha Calificación
{{$report->visit->event->executive->full_name}} {{$report->visit->event->executive->region_name}} {{$report->user->full_name}} {{$report->created_at->format('d-m-Y')}} {{$report->score}} Detalles
{!! $reports->appends(Input::all())->render() !!}
@else
Lo sentimos... No hay reportes que mostrar.
@endif @endsection @section('script') @parent @endsection