@extends('adminlte::page') @section('title', 'Kelola User') @section('content_header')

Kelola Admin & User

Tambah User
@stop @section('content') @if (session('success'))
{{ session('success') }}
@endif
@forelse ($users as $user) @empty @endforelse
Nama Email Role Dibuat
{{ $user->name }} {{ $user->email }} {{ $user->role?->name ?? 'Tanpa Role' }} {{ optional($user->created_at)->format('d M Y H:i') ?? '-' }}
Belum ada data user.
@stop @section('css') @stop @section('js') @stop