@extends('layouts.syndron.app') @section('content')

{{ $page->title }}

{{ __('Slug') }}: {{ $page->slug }}
{{ __('Status') }}: {{ ucfirst($page->status) }}
{{ __('Author') }}: {{ $page->author?->name ?? '-' }}
{{ __('Content') }}:
{!! $page->content !!}
{{ __('Excerpt') }}: {{ $page->excerpt }}
{{ __('Meta Title') }}: {{ $page->meta_title }}
{{ __('Meta Description') }}: {{ $page->meta_description }}
{{ __('Meta Keywords') }}: {{ $page->meta_keywords }}
{{ __('Template') }}: {{ $page->template }}
{{ __('Featured Image') }}: @if($page->featured_image) @else - @endif
{{ __('Position') }}: {{ $page->position }}
{{ __('Published At') }}: {{ $page->published_at }}
@endsection