@extends('layouts.app') @section('title', 'User Management') @push('styles') @endpush @section('content')
Create, edit, and manage platform users.
| User | Employee ID | Department | Role | Status | Joined | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
|
{{ $user->employee_id ?? '—' }} | {{ $user->department ?? '—' }} | @php $rname = $user->role?->name ?? 'employee'; @endphp {{ $user->role?->display_name ?? 'Employee' }} | @if($user->is_active) Active @else Inactive @endif | {{ $user->created_at->format('d M Y') }} |
Edit
@if($user->id !== auth()->id())
@endif
|
No users found matching your search.