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

{{ $customPage->title }}

Edit Back to Pages
Page Content
{!! $customPage->content !!}
Page Details
Status
{{ $customPage->active ? 'Active' : 'Inactive' }}
Display Locations

@if($customPage->show_in_header) Header Navigation @endif @if($customPage->show_in_footer) Footer Navigation @endif @if(!$customPage->show_in_header && !$customPage->show_in_footer) Not Displayed in Navigation @endif

Display Order

{{ $customPage->order }}

Creation & Updates

Created: {{ $customPage->created_at->format('M d, Y H:i') }}

Last Updated: {{ $customPage->updated_at->format('M d, Y H:i') }}

@if($customPage->creator)

Created By: {{ $customPage->creator->name }}

@endif @if($customPage->updater)

Last Updated By: {{ $customPage->updater->name }}

@endif
SEO Information
Meta Description

{{ $customPage->meta_description ?: 'No meta description set' }}

Meta Keywords

{{ $customPage->meta_keywords ?: 'No meta keywords set' }}

Edit Page All Pages
@csrf @method('DELETE')
@endsection @section('styles') @endsection