Размер файла: 3.43Kb
@extends('layout')
@section('title')
{{ $forum->title }} (Стр. {{ $page->current }})
@stop
@section('content')
<h1>{{ $forum->title }}</h1>
<div class="forum-wrapp">
<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="btns">
<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->getProfile(null, false) !!} ({{ 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="forum">
<ul id="topic_{{ $topic->id }}">
<li><a href="/topics/{{ $topic->id }}"><span class="icon"><img src="/themes/WhiteBlack/img/forumg.png" alt="icon"></span> {{ $topic->title }} ({{ $topic->count_posts }}) <span class="dats">({{ dateFixed($topic->lastPost->created_at) }})</span> <span class="authors">Сообщение: {!! $topic->lastPost->user->getProfile(null, false) !!}</span></a></li>
</ul>
<!--<div class="forum-paginate">
@if ($topic->lastPost)
<span>{!! $topic->pagination() !!}</span>
<span>Сообщение: {!! $topic->lastPost->user->getProfile(null, false) !!} ({{ dateFixed($topic->lastPost->created_at) }})</span>
@endif
</div>-->
</div>
@endforeach
{!! pagination($page) !!}
@elseif ($forum->closed)
{!! showError('В данном разделе запрещено создавать темы!') !!}
@else
{!! showError('Тем еще нет, будь первым!') !!}
@endif
<div class="post-nav-link">
<a href="/rules">Правила</a>
<a href="/forums/top/topics">Топ тем</a>
<a href="/forums/top/posts">Топ постов</a>
<a href="/forums/search?fid={{ $forum->id }}">Поиск</a>
</div>
</div>
@stop