File size: 3.2Kb
@extends('layout')
@section('title')
{{ $forum->title }} (Стр. {{ $page->current }})
@stop
@section('content')
<h1>{{ $forum->title }}</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="/forums">Форум</a></li>
@if ($forum->parent->id)
<li class="breadcrumb-item"><a href="/forums/{{ $forum->parent->id }}">{{ $forum->parent->title }}</a></li>
@endif
<li class="breadcrumb-item active">{{ $forum->title }}</li>
@if (isAdmin())
<li class="breadcrumb-item"><a href="/admin/forums/{{ $forum->id }}?page={{ $page->current }}">Управление</a></li>
@endif
</ol>
</nav>
@if (getUser() && ! $forum->closed)
<div class="dob">
<a class="btn btn-success" href="/forums/create?fid={{ $forum->id }}">Создать тему</a>
</div>
@endif
@if ($forum->children->isNotEmpty() && $page->current == 1)
<div class="act">
@foreach ($forum->children as $child)
<div class="b"><i class="fa fa-file-alt fa-lg text-muted"></i>
<b><a href="/forums/{{ $child->id }}">{{ $child->title }}</a></b> ({{ $child->count_topics }}/{{ $child->count_posts }})</div>
@if ($child->lastTopic->id)
<div>
Тема: <a href="/topics/end/{{ $child->lastTopic->id }}">{{ $child->lastTopic->title }}</a><br>
@if ($child->lastTopic->lastPost->id)
Сообщение: {{ $child->lastTopic->lastPost->user->login }} ({{ dateFixed($child->lastTopic->lastPost->created_at) }})
@endif
</div>
@else
<div>Темы еще не созданы!</div>
@endif
@endforeach
</div>
<hr>
@endif
@if ($topics->isNotEmpty())
@foreach ($topics as $topic)
<div class="content" id="topic_{{ $topic->id }}">
<div class="block">
<a href="/topics/{{ $topic->id }}"> <img src="/themes/RdesignNew/img/forums2.png" alt="folder">{{ $topic->title }} <span>({{ $topic->count_posts }})</span></a>
</div>
</div>
<div class="forums-descrips">
@if ($topic->lastPost)
<span>{!! $topic->pagination() !!}</span>
<span>Сообщение: {{ $topic->lastPost->user->login }} ({{ dateFixed($topic->lastPost->created_at) }})
</span>
@endif
</div>
@endforeach
{!! pagination($page) !!}
@elseif ($forum->closed)
{!! showError('В данном разделе запрещено создавать темы!') !!}
@else
{!! showError('Тем еще нет, будь первым!') !!}
@endif
<div class="forums-bottom">
<a href="/rules">Правила</a>
<a href="/forums/top/themes">Топ тем</a>
<a href="/forums/top/posts">Топ постов</a>
<a href="/forums/search?fid={{ $forum->id }}">Поиск</a>
</div>
@stop