@extends('adminlte::page') @section('title', 'Users') @section('content_header')

Registered Users

@stop @section('content')

List of All Registered Users

Total: {{ $users->total() }} users
@if($users->count() > 0)
@foreach($users as $user) @endforeach
# Name Email Email Verified Registered Date Action
{{ ($users->currentPage() - 1) * $users->perPage() + $loop->iteration }} {{ $user->name }} {{ $user->email }} @if($user->email_verified_at) Verified @else Not Verified @endif {{ $user->created_at->diffForHumans() }} View
{{-- Pagination --}}
@else

No registered users yet

@endif
{{-- --}} @stop @section('css') @stop