{{-- resources/views/panel/applications_trash.blade.php (ejemplo) --}}

Applications (Trash)

Deleted apps stay here for 24 hours. You can restore them before they are purged.
Back to Applications
{{-- Errors --}} @if ($errors->any())
{{ $errors->first() }}
@endif {{-- Card --}}
Trash
Deleted applications
Restore an app to make it active again. After purge time, it will be permanently removed.
Total: {{ $apps->count() }}
@if($apps->isEmpty())
Trash is empty
No deleted applications right now.
@else
@foreach($apps as $app) @endforeach
Name Deleted at Purge at Actions
{{ $app->name }}
ID: {{ $app->id }}
{{ optional($app->deleted_at)->format('Y-m-d H:i') ?? '-' }} @if($app->purge_at) {{ optional($app->purge_at)->format('Y-m-d H:i') }} @else - @endif
@csrf
Tip: Restoring an app will reactivate its key and API access immediately.
@endif