{{ $stats['total_threads'] }}

Total Threads

{{ $stats['total_posts'] }}

Total Posts

{{ $stats['total_categories'] }}

Categories

@if($forum->categories->count() > 0)

Discussion Categories

@foreach($forum->categories as $index => $category)
@if($category->icon)
{{ $category->icon }}
@else
@endif

{{ $category->name }}

{{ $category->threads_count }} threads
@if($category->description)

{{ $category->description }}

@endif
@foreach($category->threads->take(3) as $thread)
{{ $thread->title }}

by {{ $thread->author_name }} • {{ $thread->created_at->diffForHumans() }}

{{ $thread->replies_count }}
@endforeach
@if($category->threads->count() > 3) @endif
@endforeach
@endif @if($recentThreads->count() > 0)

Recent Discussions

@foreach($recentThreads as $thread)
@if($thread->is_pinned) 📌 Pinned @endif @if($thread->is_featured) ⭐ Featured @endif @if($thread->category) {{ $thread->category->name }} @endif
{{ $thread->title }}

{{ $thread->excerpt }}

{{ substr($thread->author_name, 0, 1) }}
{{ $thread->author_name }}
{{ $thread->created_at->diffForHumans() }}
{{ $thread->views_count }}
{{ $thread->replies_count }}
@if($forum->voting_enabled)
{{ $thread->votes_count }}
@endif
@if($forum->voting_enabled) @endif
@endforeach
@endif