@extends('admin.layouts.app') @section('title', 'Custom Pages') @section('breadcrumb')
  • Pages
  • Custom Pages
  • @endsection @section('heading', 'Custom Pages') @section('subheading', 'Manage custom static pages.') @section('content') {{-- Add Inline Form --}}

    Add Page

    @csrf
    {{-- Table --}}
    @foreach ([ ['title' => 'Terms & Conditions', 'slug' => 'terms-conditions', 'template' => 'Default', 'author' => 'Admin', 'status' => 'Published', 'updated' => '12 Feb 2025'], ['title' => 'Privacy Policy', 'slug' => 'privacy-policy', 'template' => 'Default', 'author' => 'Admin', 'status' => 'Published', 'updated' => '10 Feb 2025'], ['title' => 'Disclaimer', 'slug' => 'disclaimer', 'template' => 'Default', 'author' => 'Admin', 'status' => 'Published', 'updated' => '08 Feb 2025'], ['title' => 'Refund Policy', 'slug' => 'refund-policy', 'template' => 'Default', 'author' => 'Admin', 'status' => 'Published', 'updated' => '05 Feb 2025'], ['title' => 'Sitemap', 'slug' => 'sitemap', 'template' => 'Full Width', 'author' => 'Admin', 'status' => 'Published', 'updated' => '01 Feb 2025'], ] as $page) @endforeach
    Page Title Slug Template Author Status Updated Actions
    {{ $page['title'] }} {{ $page['slug'] }} {{ $page['template'] }} {{ $page['author'] }} {{ $page['status'] }} {{ $page['updated'] }}
    @endsection