@extends('admin.layout.app') @section('title', 'Users') @section('page-title', 'Registered Users') @section('content')

Users Management

@if (session('success')) @endif
@if(request()->hasAny(['email_verified', 'search'])) @endif
@forelse ($users as $key => $user) @empty @endforelse
# Name Email Phone Registration Date Action
{{ $users->firstItem() + $key }} {{ $user->first_name ?? 'N/A' }} {{ $user->email }} {{ $user->phone ? $user->phone : 'N/A' }} {{ $user->created_at->format('d M Y') }}
{{ $user->created_at->format('h:i A') }}
No users found.
@if($users->hasPages())
{{ $users->links('pagination::bootstrap-4') }}
@endif
@endsection