@extends('layouts.frontend.app') @section('title', $content->title) @section('meta_keys', $content->meta_keys) @section('meta_description', $content->meta_desc) @section('script') @endsection @section('content')
@include('inner.breadcrumb', ['pageTitle' => $content->title])
@include('content._aside')
@if ($content->image && file_exists('storage/' . $content->image) && $content->show_image == 1) Image of {{ $content->title }} @endif
{!! $content->description !!}
{{-- show the history --}} @if ($content->show_children == 1) @include('content._history') @endif
@endsection