29 lines
688 B
PHP
29 lines
688 B
PHP
<x-app-layout>
|
|
<!--<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{-- __('Dashboard') --}}
|
|
</h2>
|
|
</x-slot>-->
|
|
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Person</th>
|
|
<th scope="col">Anzahl Stuhlgänge</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($users as $user)
|
|
<tr>
|
|
<th scope="row">{{ $user->name }}</th>
|
|
<td>{{ $allshits->where('user_id', $user->id)->first()->total }} </td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
</x-app-layout>
|