@extends('layout') @section('content')
@if($post->image)

@else

@endif {{ $post->title }} @badge(['show' => now()->diffInMinutes($post->created_at) < 30]) {{ __('Brand new Post!') }} @endbadge @if($post->image)

@else @endif

{{ $post->content }}

@updated(['date' => $post->created_at, 'name' => $post->user->name]) @endupdated @updated(['date' => $post->updated_at]) {{ __('Updated') }} @endupdated @tags(['tags' => $post->tags])@endtags

{{ trans_choice('messages.people.reading', $counter) }}

{{ __('Comments') }}

@commentForm(['route' => route('posts.comments.store', ['post' => $post->id])]) @endcommentForm @commentList(['comments' => $post->comments]) @endcommentList
@include('posts._activity')
@endsection('content')