@extends('layouts.layout-inner') @section('content')

Blog

{{ date('d', strtotime($post->created_at)) }}
{{ date('M Y', strtotime($post->created_at)) }}

{{ $post->title }}

@if ($post->image) {{ $post->title }} @endif {!! $post->body !!}
Back to Blog
@if ($post->comment_on)
× Success! <% statusMsg %>

Comments {{ count($comments) }}

@if (isset($comments)) @foreach ($comments as $key => $comment)
{{ substr($comment->name, 0, 1) }}

{{ $comment->title }}
{{ $comment->name }} | {{ date('d M Y', strtotime($comment->created_at)) }}

{{ $comment->content }}

@endforeach @endif Post Your Comment
@endif
@widget('recentPosts')
@widget('archiveYears')
@endsection