Вход Регистрация
Файл: resources/views/photos/user_comments.blade.php
Строк: 57
<?php
@extends('layout')

@
section('title'__('main.comments') . ' ' $user->getName() . ' (' __('main.page_num', ['page' => $comments->currentPage()]) . ')')

@
section('header')
    <
h1>{{ __('main.comments') }} {{ $user->getName() }}</h1>
@
stop

@section('breadcrumb')
    <
nav>
        <
ol class="breadcrumb">
            <
li class="breadcrumb-item"><a href="/"><class="fas fa-home"></i></a></li>
            <
li class="breadcrumb-item"><a href="/photos">{{ __('index.photos') }}</a></li>
            <
li class="breadcrumb-item active">{{ __('main.comments') }} {{ $user->getName() }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$comments->isNotEmpty())
        @foreach (
$comments as $comment)
            <
div class="section mb-3 shadow">
                <
class="fa fa-file-alt"></i> <b><a href="/photos/comment/{{ $comment->relate_id }}/{{ $comment->id }}">{{ $comment->title }}</a></b>

                @if (
isAdmin())
                    <
a href="#" class="float-end" 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') }}"><class="fa fa-times"></i></a>
                @endif

                <
div class="section-message">
                    {{ 
bbCode($comment->text) }}<br>

                    {{ 
__('main.posted') }}: {{ $comment->user->getProfile() }}
                    <
small class="section-date text-muted fst-italic">{{ dateFixed($comment->created_at) }}</small>

                    @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
?>
Онлайн: 2
Реклама