{{-- Topic Header --}}
{{ strtoupper(substr($topic['author_name'] ?? 'U', 0, 2)) }}

{{ $topic['title'] ?? '' }}

{{ $topic['author_name'] ?? '' }} · {{ $topic['created_at'] ?? '' }} · {{ $topic['replies_count'] ?? 0 }} {{ __('replies') }}

{{ $topic['body'] ?? '' }}
{{-- Replies --}}
@forelse($topic['replies'] ?? [] as $reply)
{{ strtoupper(substr($reply['author_name'] ?? 'U', 0, 2)) }}

{{ $reply['author_name'] ?? '' }}

{{ $reply['created_at'] ?? '' }}

{{ $reply['body'] ?? '' }}

@empty

{{ __('No replies yet') }}

@endforelse
{{-- Reply Form --}}