@extends('layouts.app') @section('title', $singleRecord->title ?? $Title) @section('content')
{{-- Feature Image --}}
@if(!empty($singleRecord->image)) {{ $singleRecord->title ?? 'Page image' }} @else {{ $singleRecord->title ?? 'Page image' }} @endif
{{-- Title --}}

{{ $singleRecord->title ?? "" }}

{{-- Intro / excerpt --}} @if(!empty($singleRecord->short_description))

{!! $singleRecord->short_description !!}

@endif {{-- Body content (allow HTML) --}}
{!! $singleRecord->description !!}
@endsection