@extends('layouts.panel-admin') @section('title', 'Cuentas eliminadas') @section('content') @forelse($accounts['data'] ?? [] as $account) @empty @endforelse
Fecha baja Email Nombre Teléfono
{{ \Carbon\Carbon::parse($account->deletedAt)->format('d/m/Y H:i') }} {{ $account->email }} {{ $account->name ?? '—' }} {{ $account->phone ?? '—' }} Ver
No hay cuentas eliminadas.
@if(isset($accounts['last_page']) && $accounts['last_page'] > 1) @php $cp = $accounts['current_page'] ?? 1; $lp = $accounts['last_page']; @endphp @endif @endsection