{{ $thread->title }}
{{ $thread->authorName }} @include ('forum.partials.timestamp', ['carbon' => $thread->created_at]) @if (! isset($category))
{{ $thread->category->title }} @endif
@if ($thread->pinned) {{ trans('forum::threads.pinned') }} @endif @if ($thread->locked) {{ trans('forum::threads.locked') }} @endif @if ($thread->userReadStatus !== null && ! $thread->trashed()) {{ trans($thread->userReadStatus) }} @endif @if ($thread->trashed()) {{ trans('forum::general.deleted') }} @endif {{ trans('forum::general.replies') }}: {{ $thread->reply_count }}
@if ($thread->lastPost)
{{ trans('forum::posts.view') }} »
{{ $thread->lastPost->authorName }} @include ('forum.partials.timestamp', ['carbon' => $thread->lastPost->created_at])
@endif @if (isset($category) && isset($selectableThreadIds) && in_array($thread->id, $selectableThreadIds))
@endif