@extends('layouts.app') @section('content')

Account deletion requests

← Dashboard
@if(session('status'))

{{ session('status') }}

@endif

Pending approval

@if($requests->isEmpty())

No pending deletion requests.

@else @foreach($requests as $row) @endforeach
User Email Requested Reason Actions
{{ $row->user?->name }} {{ $row->user?->email }} {{ $row->requested_at?->diffForHumans() }} {{ $row->reason ?: '—' }}
@csrf
@csrf
{{ $requests->links() }} @endif
@if($recent->isNotEmpty())

Recently processed

@foreach($recent as $row) @endforeach
User Status Handled Admin note
{{ $row->user?->name }} ({{ $row->user?->email }}) {{ ucfirst($row->status) }} {{ $row->handled_at?->format('Y-m-d H:i') }} {{ $row->admin_note ?: '—' }}
@endif
@endsection