@extends('layouts.app') @section('title', 'User Management - SIDOHIBAH') @section('page-title', 'Kelola User') @section('content')
| No | Nama | Role | Dibuat | Aksi | |
|---|---|---|---|---|---|
| {{ $users->firstItem() + $index }} |
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
|
{{ $user->email }} | @switch($user->role) @case('admin') Admin @break @case('kepala_bidang') Kepala Bidang @break @case('tim_teknis') Tim Teknis @break @case('user') User @break @default {{ $user->role }} @endswitch | {{ \Carbon\Carbon::parse($user->created_at)->format('d M Y') }} |
@if($user->id != Auth::id())
@else
@endif
|
Klik tombol "Tambah User" untuk menambahkan user baru.