@extends('front_end.layouts.public_page') @section('title', $customPage->title) @section('meta_description', $customPage->meta_description) @section('meta_keywords', $customPage->meta_keywords) @php // Ensure sidebars are shown unless explicitly disabled in child views $showLeftSidebar = false; $showRightSidebar = false; @endphp @section('content')
{{-- Back --}}

{{ $customPage->title }}

@if ($customPage->meta_description)

{{ $customPage->meta_description }}

@endif
@if ($customPage->updated_at) Updated {{ $customPage->updated_at->diffForHumans() }} @else Fresh insights @endif
{{ number_format(str_word_count(strip_tags((string) $customPage->content))) }} words
{!! $customPage->content !!}
{{-- --}}
@endsection @section('styles') @endsection @push('scripts') @endpush