@section('forums-post-meta') {{ $forumPost->creator->username }} @if ($forumPost->creator->avatar) {{ $forumPost->creator->username }} @endif @if ($forumPost->creator->hasAccess('forums', PERM_UPDATE)) {{ trans('forums::moderator') }} @endif {{ $forumPost->creator->posts_count }} Posts @show
@section('forums-post-top-bar') {!! $forumPost->created_at->dateTime() !!} @show
@section('forums-post-text') {!! $forumPost->renderText() !!} @if ($forumPost->creator->signature)

{!! $forumPost->creator->renderSignature() !!}
@endif @show
@if ($forumPost->updater_id and $forumPost->updated_at->diffInMinutes($forumPost->created_at) > 0)
{!! trans('forums::updated_at', [$forumPost->updated_at->dateTime()]) !!}
@endif