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