@extends('admin.layouts.home') @section('title', 'Trashed Custom Pages') @section('content')

Trashed Custom Pages

Back to Pages
Trashed Pages
@if(session('success'))
{{ session('success') }}
@endif
@forelse($trashedPages as $page) @empty @endforelse
ID Title Slug Status Location Deleted At Actions
{{ $page->id }} {{ $page->title }} {{ $page->slug }} {{ $page->active ? 'Active' : 'Inactive' }} @if($page->show_in_header) Header @endif @if($page->show_in_footer) Footer @endif {{ $page->deleted_at->format('M d, Y H:i') }}
@csrf
@csrf @method('DELETE')
No trashed pages found.
{{ $trashedPages->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection