@extends('layouts.app') @section('title', 'Human Resources') @section('content')

Employee Directory

@forelse($users as $user) @empty @endforelse
Employee Role Email Status Joined Actions
{{ $user->name }}
ID: #{{ str_pad($user->id, 5, '0', STR_PAD_LEFT) }}
{{ $user->role ?? 'Staff' }} {{ $user->email }} Active {{ $user->created_at->format('M d, Y') }}
No employees found.
{{ $users->links() }}
@endsection