{{ $category->title }}

{{ $category->description }}

@if ($category->accepts_threads) {{ trans_choice('forum::threads.thread', 2) }}: {{ $category->thread_count }}
{{ trans_choice('forum::posts.post', 2) }}: {{ $category->post_count }} @endif
@if ($category->accepts_threads) @if ($category->newestThread)
{{ $category->newestThread->title }} @include ('forum.partials.timestamp', ['carbon' => $category->newestThread->created_at])
@endif @if ($category->latestActiveThread && $category->latestActiveThread->post_count > 1)
Re: {{ $category->latestActiveThread->title }} @include ('forum.partials.timestamp', ['carbon' => $category->latestActiveThread->lastPost->created_at])
@endif @endif
@if ($category->children->count() > 0)
@foreach ($category->children as $subcategory)
{{ $subcategory->title }}
{{ $subcategory->description }}
{{ trans_choice('forum::threads.thread', 2) }}: {{ $subcategory->thread_count }}
{{ trans_choice('forum::posts.post', 2) }}: {{ $subcategory->post_count }}
@if ($subcategory->newestThread)
{{ $subcategory->newestThread->title }} @include ('forum.partials.timestamp', ['carbon' => $subcategory->newestThread->created_at])
@endif @if ($subcategory->latestActiveThread && $subcategory->latestActiveThread->post_count > 1)
Re: {{ $subcategory->latestActiveThread->title }} @include ('forum.partials.timestamp', ['carbon' => $subcategory->latestActiveThread->lastPost->created_at])
@endif
@endforeach
@endif