@extends('layouts.app') @section('content')
Admin
☰
Dashboard
📋 Kelola Booking
👥 Kelola User
Pengaturan
🏠 Halaman utama
@csrf
Logout
👥 Kelola User
@if (session('success'))
{{ session('success') }}
@endif
No
Nama
Email
Tanggal Daftar
Aksi
@forelse ($users as $index => $user)
{{ $index + 1 }}
{{ $user->name }}
{{ $user->email }}
{{ $user->created_at->format('d M Y') }}
@csrf @method('DELETE')
Hapus
@empty
Belum ada user terdaftar.
@endforelse
@endsection