@extends('layouts.app') @section('title', 'Pending Users') @section('content')

Pending Users

Back to Users
@if($users->isEmpty())

No Pending Users

All user registrations have been processed.

@else @foreach($users as $user)
{{ $user->full_name }}

Username: {{ $user->username }} | Employee ID: {{ $user->employee_id }}

Email: {{ $user->email }} | Department: {{ $user->department->name }}

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

@csrf
Hold Ctrl to select multiple
@csrf
@endforeach {{ $users->links() }} @endif @endsection