@extends('layouts.app') @section('page-title', 'Deleted Users') @section('content') Back to Users
@if($users->count())
@foreach($users as $user) @endforeach
User Email Country Deleted Actions

{{ $user->full_name }}

@foreach($user->roles as $role) @endforeach
{{ $user->email }} {{ $user->country?->name ?? '-' }}

{{ $user->deleted_at->format('M d, Y') }}

{{ $user->deleted_at->diffForHumans() }}

@csrf @method('PATCH')
{{ $users->links() }}
@else

No deleted users

Deleted users will appear here and can be restored.

@endif
@endsection