@extends('layouts.modcp') @section('page-title', 'Deleted entries - ' . config('app.name') ) @section('modcp-content')
Deleted entries {{ $entries->total() }}
@if($entries->isEmpty())

No deleted entries.

@else
@foreach($entries as $entry)
@if($entry->main_image) @else @endif
{{ $entry->complete_title ?? $entry->title }} {{ $entry->type }} @php $daysLeft = max(0, 7 - (int) now()->diffInDays($entry->deleted_at)) @endphp Deleted {{ $entry->deleted_at->diffForHumans() }} @if($daysLeft > 0) ยท purged in {{ $daysLeft }}d @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach
{{ $entries->links('modcp.pagination') }} @endif @endsection