Recaje-New/resources/views/admin/users/index.blade.php

84 lines
4.7 KiB
PHP

@extends('layouts.admin.app')
@section('title', '| Daftar Pengguna')
@section('content')
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-md p-6 mb-8 border border-gray-100 dark:border-gray-700">
<div class="flex justify-between items-center mb-6">
<h1 class="text-2xl font-bold text-gray-800 dark:text-white">Daftar Pengguna</h1>
<div>
<a href="{{ route('admin.users.create') }}" class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition-colors duration-200 inline-flex items-center">
Tambah
</a>
</div>
</div>
<div class="relative overflow-x-auto shadow-md sm:rounded-lg">
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 overflow-hidden rounded-lg">
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<tr class="h-12">
<th scope="col" class="px-6 py-3 rounded-tl-lg">
NAMA
</th>
<th scope="col" class="px-6 py-3">
EMAIL
</th>
<th scope="col" class="px-6 py-3">
ROLE
</th>
<th scope="col" class="px-6 py-3 text-right rounded-tr-lg">
</th>
</tr>
</thead>
<tbody>
@forelse($users as $user)
<tr class="h-16 bg-white dark:bg-gray-700 border-b border-gray-200 dark:border-gray-600 transition-colors hover:bg-gray-50 dark:hover:bg-gray-600">
<th scope="row" class="px-6 py-4 font-medium text-gray-900 dark:text-white whitespace-nowrap {{ $loop->last ? 'rounded-bl-lg' : '' }}">
{{ $user->name }}
</th>
<td class="px-6 py-4 text-gray-500 dark:text-gray-400">
{{ $user->email }}
</td>
<td class="px-6 py-4">
<span class="inline-flex text-xs leading-5 font-semibold rounded-full {{ $user->role === 'admin' ? 'bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200' : 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200' }}">
{{ ucfirst($user->role) }}
</span>
</td>
<td class="px-6 py-4 text-right {{ $loop->last ? 'rounded-br-lg' : '' }}">
<div class="flex items-center justify-end space-x-4">
<a href="{{ route('admin.users.show', $user) }}" class="text-xs font-semibold uppercase hover:underline text-blue-600 dark:text-blue-400">
Detail
</a>
@if(Auth::id() !== $user->id)
<form action="{{ route('admin.users.destroy', $user) }}" method="POST" onsubmit="return confirm('Apakah Anda yakin ingin menghapus pengguna ini?');" class="inline">
@csrf
@method('DELETE')
<button type="submit" class="text-xs font-semibold uppercase hover:underline text-blue-600 dark:text-blue-400 cursor-pointer">
Hapus
</button>
</form>
@endif
<a href="{{ route('admin.users.edit', $user) }}" class="text-xs font-semibold uppercase hover:underline text-blue-600 dark:text-blue-400 cursor-pointer">
Edit
</a>
</div>
</td>
</tr>
@empty
<tr class="h-16 bg-white dark:bg-gray-700">
<td colspan="4" class="px-6 py-4 text-center text-gray-500 dark:text-gray-400 rounded-b-lg">
Tidak ada pengguna yang ditemukan.
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<div class="mt-6">
{{ $users->links() }}
</div>
</div>
@endsection