@extends('admin.layouts.master') @section('title', 'Registered Users') @section('parent_title', 'Management') @section('content')
@foreach($users as $user) @endforeach
S.No User Email Phone Number Account Role Status Verification Status Joined Date Actions
{{ (($users->currentPage() - 1) * $users->perPage()) + $loop->iteration }}
{{ substr($user->full_name, 0, 1) }}
{{ $user->full_name }} #UID-{{ str_pad($user->id, 5, '0', STR_PAD_LEFT) }}
{{ $user->email }} {{ $user->phone_number ?? 'N/A' }} {{ $user->created_at->format('d M Y') }} Actions
No Matches Found
No registered users in current chunk profile match your typed filter keys criteria.
Showing {{ $users->firstItem() }} to {{ $users->lastItem() }} of {{ $users->total() }} entries
{{ $users->links() }}
@section('scripts') @endsection @endsection