@extends('layouts.master') @section('title','Deactivated users list') @section('content')

Deactivated user List

@forelse ($users as $user) @empty @endforelse
Name Email Created at Action
{{ $user->name }} {{ $user->email }} {{ date('d/m/Y h:i:s a',strtotime($user->created_at)) }} View Details
No users found.
{{ $users->appends(request()->except('page'))->links('pagination::bootstrap-4') }}
@endsection