@extends('layouts.guest') @section('title', $post->title) @section('content')
← {{ __('Back to blog') }}

{{ $post->title }}

{{ $post->published_at?->format('F d, Y') }} · {{ $post->reading_time }} {{ __('min read') }}

@if($post->image) {{ $post->title }} @endif
{!! $post->body !!}
@if($related->isNotEmpty())

{{ __('Related posts') }}

@foreach($related as $rel)

{{ $rel->title }}

{{ $rel->excerpt }}

@endforeach
@endif
@endsection