{{ substr($thread->author_name, 0, 1) }}

{{ $thread->author_name }}

{{ $thread->created_at->diffForHumans() }}

@if($thread->is_pinned) 📌 Pinned @endif
{!! nl2br(e($thread->content)) !!}
@if($thread->posts->count() > 0)

{{ $thread->replies_count }} Replies

@foreach($thread->posts as $index => $post)
{{ substr($post->author_name, 0, 1) }}

{{ $post->author_name }}

{{ $post->created_at->diffForHumans() }}

@if($forum->voting_enabled)
{{ $post->votes_count }}
@endif
{!! nl2br(e($post->content)) !!}
@endforeach
@endif @if(!$thread->is_locked)

Post a Reply

@csrf
@else

This thread is locked

No new replies can be posted

@endif