diff --git a/resources/views/admin/count.blade.php b/resources/views/admin/count.blade.php index 556645e6471bb79b8e99e98f1c8961185ab34e3d..3867b35be918129e2c889754be3436dba1670c02 100644 --- a/resources/views/admin/count.blade.php +++ b/resources/views/admin/count.blade.php @@ -10,11 +10,11 @@ <th>Datum</th> <th>Suchanfragen zur gleichen Zeit</th> <th>Suchanfragen insgesamt</th> - <th>Mittelwert</th> + <th>Mittelwert (bis zum jeweiligen Tag zurück)</th> </tr> @if( isset($today) ) <tr> - <td>{{ date(DATE_RFC822, mktime(date("H"),date("i"), date("s"), date("m"), date("d"), date("Y"))) }}</td> + <td>{{ date("D, d M y", mktime(date("H"),date("i"), date("s"), date("m"), date("d"), date("Y"))) }}</td> <td>{{ $today }}</td> <td>???</td> <td>???</td> @@ -22,7 +22,7 @@ @endif @foreach($oldLogs as $key => $value) <tr> - <td>{{ date(DATE_RFC822, mktime(date("H"),date("i"), date("s"), date("m"), date("d")-$key, date("Y"))) }}</td> + <td>{{ date("D, d M y", mktime(date("H"),date("i"), date("s"), date("m"), date("d")-$key, date("Y"))) }}</td> <td>{{ $value['sameTime'] }}</td> <td>{{ $value['insgesamt'] }}</td> <td>{{ $value['median'] }}</td>