@extends('layouts.app') @section('title', 'Daftar Users') @section('content')
Kelola pengguna sistem
| # | Avatar | Nama & Username | Role | Status | Tanggal | Aksi | |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
@if($user->foto && file_exists(storage_path('app/public/users/' . $user->foto)))
{{ strtoupper(substr($user->name, 0, 2)) }}
@endif
|
{{ $user->name }}
{{ $user->username }}
|
{{ $user->email }} | @php $roleColors = [ 'administrator' => 'danger', 'admin' => 'primary', 'teknisi' => 'info', 'reseler' => 'warning', 'pelanggan' => 'success' ]; @endphp {{ ucfirst($user->role) }} | {{ ucfirst($user->status) }} | {{ $user->created_at->format('d/m/Y') }} |