@extends('layouts.admin') @section('title', 'Users') @section('page-title', 'Users') @section('content')

All Users

{{ $users->total() }} registered users

@forelse($users as $user) @empty @endforelse
# User Email Role Joined Status Actions
{{ $user->id }}
{{ substr($user->name,0,1) }}
{{ $user->name }}
{{ $user->email }} {{ ucfirst($user->role ?? 'student') }} {{ $user->created_at->format('d M Y') }} Active
@csrf @method('DELETE')
No users found
@if($users->hasPages())
{{ $users->links() }}
@endif @endsection