Feuerwehr-eppingen/resources/views/inc/admin/subscriptions.blade.php
Marco Glietsch f4ba271c91 Hinzugefügt
- Kontaktformular für Nikolausaktion
- Lauftext für Kurzmeldungen
2020-11-19 10:04:02 +01:00

39 lines
834 B
PHP

@extends('layouts.app')
@section('content')
<h1>Dashboard</h1>
<h2>{{ $title }}</h2>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Ort</th>
<th scope="col">Anmeldungen</th>
<th scope="col">Doppelte Anmeldungen</th>
</tr>
</thead>
<tbody>
@foreach($statistics as $s)
<tr>
<td scope="row">{{ $s->city }}</td>
<td>{{ $s->subscriptions }}</td>
<td data-toggle="tooltip" title="
@foreach($s->duplicates as $d)
{{ $d->id }}, {{ $d->lastnameParent }}, {{ $d->firstnameParent }}, {{ $d->firstnameChild }}
@endforeach
">{{ $s->duplicates->count() }}</td>
</tr>
@endforeach
</tbody>
<tfoot>
<tr>
<th scope="col">Gesamt</th>
<th scope="col">{{ $total }}</th>
<th scope="col"></th>
</tr>
</tfoot>
</table>
@endsection