@extends('AdminMaster.authMaster') @section('content')
Back to Dashboard

Pending User Approvals

@if (session('success'))
{{ session('success') }}
@endif @if ($pendingUsers->count())
@foreach ($pendingUsers as $user) @endforeach
Name Email Registered At Action
{{ $user->name }} {{ $user->email }} {{ $user->created_at->format('Y-m-d H:i') }}
{{ $pendingUsers->links('pagination::bootstrap-4') }}
@else

No users waiting for approval.

@endif
@endsection