51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
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">Gesamt</th>
|
|
<th scope="col">Haushalte</th>
|
|
<th scope="col">Letzte Stunde</th>
|
|
<th scope="col">Heute</th>
|
|
<th scope="col">Letzte 7 Tage</th>
|
|
<th scope="col">Doppelte Anmeldungen</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($statistics as $s)
|
|
<tr scope="row">
|
|
<td scope="col">{{ $s->city }}</td>
|
|
<td scope="col">{{ $s->subscriptions }}</td>
|
|
<td scope="col">{{ $s->addresses }}</td>
|
|
<td scope="col">{{ $s->lastHour }}</td>
|
|
<td scope="col">{{ $s->today }}</td>
|
|
<td scope="col">{{ $s->sevenDays }}</td>
|
|
<td scope="col" 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">{{ $totals->totalOverall }}</th>
|
|
<th scope="col">{{ $totals->totalAddresses }}</th>
|
|
<th scope="col">{{ $totals->totalLastHour }}</th>
|
|
<th scope="col">{{ $totals->totalToday }}</th>
|
|
<th scope="col">{{ $totals->totalSevenDays }}</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
@endsection
|