@extends('frontend.default.layouts.app') @section('meta_title', $page->title.' - '.getSetting('web_name', config('app.name'))) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($page->content), 160)) @section('breadcrumbs') @endsection @section('content') @php $pageExcerpt = \Illuminate\Support\Str::limit(trim(preg_replace('/\s+/', ' ', strip_tags($page->content))), 190); @endphp
@if ($page->picture)
@endif
{!! \App\Support\HtmlSanitizer::clean($page->content) !!}
Informasi

{{ $page->title }}

@if ($pageExcerpt !== '')

{{ $pageExcerpt }}

@endif
@endsection