@extends('layouts.app') @section('title', $post->title . ' | Blog') @section('content')
@if($post->image)
@else
@endif
{{ $post->category }} @if($post->featured) Featured @endif

{{ $post->title }}

{{ $post->author }}
{{ $post->publish_date->format('F d, Y') }}

{{ $post->summary }}

{!! $post->content !!}

Share this post

@if(isset($relatedPosts) && $relatedPosts->count() > 0) @endif
@endsection