Archived
1
0
Fork 0
This repository has been archived on 2026-06-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
wow-raid-bingo/resources/views/admin/admin/index.blade.php

21 lines
621 B
PHP

<x-layout name="admin">
<table class="table-fixed w-full">
<tr class="text-left border-b-2">
<th class="border px-6 py-3">Username</th>
<th class="border px-6 py-3">Created</th>
<th class="border px-6 py-3">Updated</th>
</tr>
@foreach($items as $item)
<tr class="bg-gray-100">
<td class="border px-4 py-2">{{ $item->username }}</td>
<td class="border px-4 py-2">{{ $item->created_at }}</td>
<td class="border px-4 py-2">{{ $item->updated_at }}</td>
</tr>
@endforeach
</table>
</x-layout>