32 lines
791 B
PHP
32 lines
791 B
PHP
<x-layout.admin>
|
|
<x-card>
|
|
<x-slot:header class="bg-brand-700!">Users</x-slot:header>
|
|
<x-slot:body class="bg-white! border border-brand-700">
|
|
|
|
<div class="py-3">
|
|
<x-table>
|
|
<x-slot:header>
|
|
<x-table.th>Name</x-table.th>
|
|
<x-table.th>Email</x-table.th>
|
|
|
|
</x-slot:header>
|
|
@foreach($users as $user)
|
|
<tr>
|
|
<x-table.td>{{ $user->name }}</x-table.td>
|
|
<x-table.td>{{ $user->email }}</x-table.td>
|
|
</tr>
|
|
@endforeach
|
|
</x-table>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</x-slot:body>
|
|
</x-card>
|
|
</x-layout.admin>
|