@extends('layouts.public') @section('title', $post->title) @if($post->excerpt) @section('metaDescription', $post->excerpt) @endif @if($post->featured_image) @section('metaImage', asset('storage/' . ltrim($post->featured_image, '/'))) @section('ogType', 'article') @endif @section('content')
Back to Blog
{{ $post->published_at ? $post->published_at->format('M d, Y') : '' }}

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif
@if($post->featured_image)
{{ $post->title }}
@endif
{!! $post->content !!}
@endsection