@extends('layouts.app') @section('title', 'Admin — Relatório') @section('content')

Relatório de candidatos

Limpar
@foreach ($counters as $key => $val) @if ($key !== 'total' && ! is_array($val))
{{ str_replace('_', ' ', $key) }}
{{ $val }}
@endif @endforeach
Total
{{ $counters['total'] ?? 0 }}
@foreach ($candidates as $c) @endforeach
ID Nome E-mail Bairro
{{ $c->id }} {{ $c->name }} {{ $c->email }} {{ $c->neighbourhood->name ?? '—' }}
{{ $candidates->withQueryString()->links() }}
@endsection