@extends('layouts.admin') @section('content')
Clear
@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif @if(count($deletedusers) > 0)
@csrf
@foreach($deletedusers as $user) @endforeach
Username @if(str_starts_with($orderby ?? '', 'username')) @endif Email @if(str_starts_with($orderby ?? '', 'email')) @endif Role Host Created @if(str_starts_with($orderby ?? '', 'createdat')) @endif Deleted @if(str_starts_with($orderby ?? '', 'deletedat')) @endif Actions
{{ $user->username }}
{{ $user->email }} {{ $user->rolename ?? 'N/A' }} {{ $user->host ?? 'N/A' }} {{ $user->created_at ? $user->created_at->format('Y-m-d H:i') : 'N/A' }} {{ $user->deleted_at ? $user->deleted_at->format('Y-m-d H:i') : 'N/A' }}
{{ $deletedusers->links() }}
@else

No deleted users found

There are no soft-deleted users matching your filters.

@endif
@endsection