@extends('front::layouts.master', ['title' => $post->meta_title ?: $post->title]) @push('meta') @if ($post->image) @endif @endpush @section('content') {{ trans('front::messages.posts.home') }} {{ trans('front::messages.posts.blog') }} {{ $post->title }} {{ $post->title }} {{ jdate($post->created_at)->format('%d %B %Y') }} @if($post->category) {{ $post->category->title }} @endif {{ $post->view }} {{ trans('front::messages.posts.visit') }} @if($post->image) @endif {!! $post->content !!} @include('front::components.comments', ['model' => $post, 'route_link' => route('front.post.comments', ['post' => $post]) ]) @include('front::posts.partials.sidebar') @endsection @push('scripts') @endpush