@extends('layouts.app') @section('title', 'Detail User') @section('content')

Detail User

Informasi lengkap pengguna sistem

Informasi User

{{ $user->name }}

@{{ $user->username }}

{{ $user->email }}

{{ $user->no_telp ?: '-' }}

@php $roleBadgeClass = match($user->role) { 'administrator' => 'bg-danger', 'admin' => 'bg-warning', 'teknisi' => 'bg-info', 'reseler' => 'bg-success', 'pelanggan' => 'bg-secondary', default => 'bg-secondary' }; @endphp {{ ucfirst($user->role) }}

{{ ucfirst($user->status) }}

{{ $user->created_at->format('d F Y, H:i') }}

{{ $user->updated_at->format('d F Y, H:i') }}

Foto Profile
@if($user->foto) Foto {{ $user->name }} @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif
{{ $user->name }}

{{ ucfirst($user->role) }}

Aksi Cepat
Edit Informasi @if($user->id !== auth()->id()) @endif
@push('scripts') @endpush @endsection