@extends('admin.layouts.master-soyuz') @section('title', __('Account Deletion Requests | ')) @section('body') @component('admin.component.breadcumb', ['secondaryactive' => 'active']) @slot('heading'){{ __('Account Deletion Requests') }}@endslot @slot('menu1'){{ __('Users') }}@endslot @slot('menu2'){{ __('Deletion Requests') }}@endslot @endcomponent
| {{ __('User') }} | {{ __('Email') }} | {{ __('Requested') }} | {{ __('Reason') }} | {{ __('Actions') }} |
|---|---|---|---|---|
|
@if($u->image && file_exists(public_path('images/user/' . $u->image)))
{{ $u->name }}
#{{ $u->id }} · {{ $u->mobile ?: __('No phone') }}
|
{{ $u->email }} |
{{ \Illuminate\Support\Carbon::parse($u->deletion_requested_at)->format('d M Y') }}
{{ \Illuminate\Support\Carbon::parse($u->deletion_requested_at)->diffForHumans() }}
|
@if(!empty($u->deletion_reason)) {{ \Illuminate\Support\Str::limit($u->deletion_reason, 140) }} @else — @endif |
{{ __('Account-deletion requests will appear here when users submit them.') }}