@extends('layouts.main') @section('content')
@if($post->thumbnail)
@endif
@php $date = \Carbon\Carbon::parse($post->created_at); @endphp
{{ $date->format('M') }}
{{ $date->format('d') }}

{{ $post->title }}

{{ $post->summary }}

{!! $post->content !!}
@endsection