@extends('layouts.app') @section('title', 'Manajemen User') @section('breadcrumb')
Kelola akun dan hak akses pengguna
| # | Nama | Role | Cabang | Telepon | Status | Dibuat | Aksi | |
|---|---|---|---|---|---|---|---|---|
| {{ $users->firstItem() + $loop->index }} |
{{ strtoupper(substr($user->name,0,1)) }}
{{ $user->name }}
@if($user->id === auth()->id())
Anda
@endif
|
{{ $user->email }} | {{ $user->role_label }} | @if($user->branch) {{ $user->branch->code }} {{ $user->branch->name }} @else HO @endif | {{ $user->phone ?? '-' }} | @if($user->is_active) Aktif @else Non-aktif @endif | {{ $user->created_at->format('d/m/Y') }} | |
| Tidak ada data user. | ||||||||