2024-02-08 10:45:19 +00:00
|
|
|
<div>
|
|
|
|
<h1>Admin Dashboard</h1>
|
|
|
|
<h3 class="pt-4">Who am I now?</h3>
|
|
|
|
{{ auth()->user()->name }}
|
|
|
|
<h3 class="pt-4">Users</h3>
|
|
|
|
<div class="flex flex-wrap gap-2">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="dark:text-white cursor-pointer w-96 box-without-bg bg-coollabs-100" wire:click="switchUser('0')">
|
2024-02-08 10:45:19 +00:00
|
|
|
Root
|
|
|
|
</div>
|
|
|
|
@foreach ($users as $user)
|
|
|
|
<div class="w-96 box" wire:click="switchUser('{{ $user->id }}')">
|
|
|
|
<p>{{ $user->name }}</p>
|
|
|
|
<p>{{ $user->email }}</p>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|