@extends('layouts.app') @section('title', $page->seo_title ?: $page->title) @section('meta_description', $page->seo_description ?: \Illuminate\Support\Str::limit(strip_tags($page->content), 155, '')) @section('meta_keywords', $page->seo_keywords ?: strtolower($page->title.', '.$page->title.' page')) @section('canonical', route('frontend.page.show', $page->slug)) @section('og_type', 'article') @section('content')

{{ $page->title }}

@php($hasHtmlContent = $page->content !== strip_tags($page->content))
@if ($hasHtmlContent) {!! $page->content !!} @else {!! nl2br(e($page->content)) !!} @endif
@endsection