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

{{ $page->title ?? 'Page' }}

@if ($page?->meta_description)

{{ $page->meta_description }}

@endif
@if ($page && $page->content)
{!! $page->content !!}
@else

Content coming soon...

@endif
@endsection