@if ($forum->forum_id and $forum->forum->level > 0)
{!! HTML::fontIcon('chevron-left') !!}
@else
{!! HTML::fontIcon('chevron-left') !!}
@endif {{ $forum->title }}
{!! trans('forums::create_thread') !!}
@if (sizeof($forum->forums) > 0)
Forums
Threads
{!! trans('app.latest') !!}
@foreach($forum->forums as $subForum)
{{ $subForum->title }} @if ($subForum->description)
{{ $subForum->description }}
@endif
{{ $subForum->threads_count }}
@if ($subForum->latest_thread)
{{ $subForum->latest_thread->updated_at }}
@else - @endif
@endforeach
@endif
Thread
Posts
{!! trans('app.latest') !!}
@foreach($forum->threads as $thread) @if (user() and user()->last_login < $thread->updated_at)
@else
@endif
@if ($thread->sticky)
{!! trans('forums::sticky') !!}
@endif @if ($thread->closed)
{!! trans('forums::closed') !!}
@endif
{{ $thread->title }}
{{ $thread->creator->username }} - {{ $thread->created_at->dateTime() }}
{{ $thread->posts_count }}
{{ $thread->updated_at->dateTime() }}
{{ $thread->creator->username }}
@endforeach