@extends('layouts.app') @section('title', 'Detail User') @section('page-title', 'Detail User') @section('content')
Detail: {{ $user->name }}
← Kembali
Nama
{{ $user->name }}
Email
{{ $user->email }}
Role
{{ $roles[$user->role] ?? ucfirst($user->role) }}
Supplier
{{ $user->supplier->name ?? '-' }}
Dibuat
{{ $user->created_at->locale('id')->isoFormat('D MMMM Y HH:mm') }}
@endsection