Размер файла: 4.32Kb
@extends('layout')
@section('title')
{{ $down->title }} - Комментарии
@stop
@section('content')
<h1>{{ $down->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="/loads">Загрузки</a></li>
@if ($down->category->parent->id)
<li class="breadcrumb-item"><a href="/loads/{{ $down->category->parent->id }}">{{ $down->category->parent->name }}</a></li>
@endif
<li class="breadcrumb-item"><a href="/loads/{{ $down->category_id }}">{{ $down->category->name }}</a></li>
<li class="breadcrumb-item"><a href="/downs/{{ $down->id }}">{{ $down->title }}</a></li>
<li class="breadcrumb-item active">Комментарии</li>
<li class="breadcrumb-item"><a href="/downs/rss/{{ $down->id }}">RSS-лента</a></li>
</ol>
</nav>
@if ($comments->isNotEmpty())
@foreach ($comments as $data)
<div class="post" id="comment_{{ $data->id }}">
<div class="b">
<div class="img">
{!! $data->user->getAvatar() !!}
{!! $data->user->getOnline() !!}
</div>
@if (getUser())
<div class="float-right">
@if (getUser('id') != $data->user_id)
<a href="#" onclick="return postReply(this)" title="Ответить"><i class="fa fa-reply text-muted"></i></a>
<a href="#" onclick="return postQuote(this)" title="Цитировать"><i class="fa fa-quote-right text-muted"></i></a>
<a href="#" onclick="return sendComplaint(this)" data-type="{{ App\Models\Down::class }}" data-id="{{ $data->id }}" data-token="{{ $_SESSION['token'] }}" data-page="{{ $page->current }}" rel="nofollow" title="Жалоба"><i class="fa fa-bell text-muted"></i></a>
@endif
@if (getUser('id') == $data->user->id && $data->created_at + 600 > SITETIME)
<a href="/downs/edit/{{ $down->id }}/{{ $data->id }}?page={{ $page->current }}"><i class="fa fa-pencil-alt text-muted"></i></a>
@endif
@if (isAdmin())
<a href="#" onclick="return deleteComment(this)" data-rid="{{ $data->relate_id }}" data-id="{{ $data->id }}" data-type="{{ App\Models\Down::class }}" data-token="{{ $_SESSION['token'] }}" data-toggle="tooltip" title="Удалить"><i class="fa fa-times text-muted"></i></a>
@endif
</div>
@endif
<b>{!! $data->user->getProfile() !!}</b> <small>({{ dateFixed($data->created_at) }})</small><br>
{!! $data->user->getStatus() !!}
</div>
<div class="message">
{!! bbCode($data->text) !!}<br>
</div>
@if (isAdmin())
<span class="data">({{ $data->brow }}, {{ $data->ip }})</span>
@endif
</div>
@endforeach
{!! pagination($page) !!}
@else
{!! showError('Нет сообщений') !!}
@endif
@if (getUser())
<div class="form">
<form action="/downs/comments/{{ $down->id }}" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
<div class="form-group{{ hasError('msg') }}">
<label for="msg">Сообщение:</label>
<textarea class="form-control markItUp" id="msg" rows="5" name="msg" required>{{ getInput('msg') }}</textarea>
{!! textError('msg') !!}
</div>
<button class="btn btn-success">Написать</button>
</form>
</div><br>
<a href="/rules">Правила</a> /
<a href="/smiles">Смайлы</a> /
<a href="/tags">Теги</a><br><br>
@else
{!! showError('Для добавления сообщения необходимо авторизоваться') !!}
@endif
@stop