@extends('layouts.app') @section('title', $post->title.' — '.setting('site_name')) @section('meta_description', $post->excerpt) @section('content')
{{ $post->category }}

{{ $post->title }}

{{ $post->author }}{{ $post->published_at?->format('d M Y') }}
@if($post->image)
@endif
{!! $post->body !!}
@if($recent->count())

More News

@foreach($recent as $r)

{{ $r->title }}

@endforeach
@endif @endsection