@php $title = $page->title; $metaTitle = $page->meta_title ?: 'Nexxuz | ' . $page->title; $metaDescription = $page->meta_description ?: \Illuminate\Support\Str::limit(strip_tags($page->title), 160); $canonicalUrl = $page->canonical_url ?: url($page->slug === '/' ? '/' : ltrim($page->slug, '/')); @endphp @extends('layouts.app') @section('schema') @endsection @section('content') {!! $page->content !!} @endsection @section('script') @endsection