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

Custom Pages

Create New Page
All Custom Pages
Trash
@if(session('success'))
{{ session('success') }}
@endif
@forelse($pages as $page) @empty @endforelse
ID Title Slug Status Location Order Created 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->order }} {{ $page->created_at->format('M d, Y') }}
@csrf @method('DELETE')
No custom pages found.
{{ $pages->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection