Размер файла: 2.16Kb
@extends('layout')
@section('title', __('index.blogs') . ' - ' . __('blogs.comments_list', ['user' => $user->getName()]) . ' (' . __('main.page_num', ['page' => $comments->currentPage()]) . ')')
@section('header')
<h1> {{ __('blogs.comments_list', ['user' => $user->getName()]) }}</h1>
@stop
@section('breadcrumb')
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="/blogs">{{ __('index.blogs') }}</a></li>
<li class="breadcrumb-item active">{{ __('blogs.comments_list', ['user' => $user->getName()]) }}</li>
</ol>
</nav>
@stop
@section('content')
@if ($comments->isNotEmpty())
@foreach ($comments as $comment)
<div class="section mb-3 shadow">
<div class="section-title">
<i class="fa fa-comment"></i>
<a href="/articles/comment/{{ $comment->relate_id}}/{{ $comment->id}}">{{ $comment->title }}</a> ({{ $comment->count_comments }})
<div class="float-end">
@if (isAdmin())
<a href="#" onclick="return deleteComment(this)" data-rid="{{ $comment->relate_id }}" data-id="{{ $comment->id }}" data-type="{{ $comment->relate->getMorphClass() }}" data-token="{{ csrf_token() }}" data-bs-toggle="tooltip" title="{{ __('main.delete') }}"><i class="fa fa-times text-muted"></i></a>
@endif
</div>
</div>
<div class="section-content">
{{ bbCode($comment->text) }}<br>
{{ __('main.posted') }}: {{ $comment->user->getProfile() }} <small>({{ dateFixed($comment->created_at) }})</small><br>
@if (isAdmin())
<div class="small text-muted fst-italic mt-2">
{{ $comment->brow }}, {{ $comment->ip }}
</div>
@endif
</div>
</div>
@endforeach
@else
{{ showError(__('main.empty_comments')) }}
@endif
{{ $comments->links() }}
@stop