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

@
section('title'$offer->title ' - ' __('main.comments'))

@
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="/offers/{{ $offer->type }}">{{ __('index.offers') }}</a></li>
            <
li class="breadcrumb-item"><a href="/offers/{{ $offer->id }}">{{ $offer->title }}</a></li>
            <
li class="breadcrumb-item active">{{ __('main.comments') }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$comments->isNotEmpty())
        @foreach (
$comments as $comment)
            <
div class="section mb-3 shadow" id="comment_{{ $comment->id }}">
                <
div class="user-avatar">
                    {{ 
$comment->user->getAvatar() }}
                    {{ 
$comment->user->getOnline() }}
                </
div>

                <
div class="section-user d-flex align-items-center">
                    <
div class="flex-grow-1">
                        {{ 
$comment->user->getProfile() }}
                        <
small class="section-date text-muted fst-italic">{{ dateFixed($comment->created_at) }}</small><br>
                        <
small class="fst-italic">{{ $comment->user->getStatus() }}</small>
                    </
div>

                    @if (
getUser())
                        <
div class="text-end">
                            @if (
getUser('id') !== $comment->user_id)
                                <
a href="#" onclick="return postReply(this)" data-bs-toggle="tooltip" title="{{ __('main.reply') }}"><class="fa fa-reply text-muted"></i></a>

                                <
a href="#" onclick="return postQuote(this)" data-bs-toggle="tooltip" title="{{ __('main.quote') }}"><class="fa fa-quote-right text-muted"></i></a>

                                <
a href="#" onclick="return sendComplaint(this)" data-type="{{ $comment->relate->getMorphClass() }}" data-id="{{ $comment->id }}" data-token="{{ csrf_token() }}" data-page="{{ $comments->currentPage() }}" rel="nofollow" data-bs-toggle="tooltip" title="{{ __('main.complain') }}"><class="fa fa-bell text-muted"></i></a>

                            @endif

                            @if (
$comment->created_at 600 SITETIME && getUser('id') === $comment->user_id)
                                <
a href="/offers/edit/{{ $offer->id }}/{{ $comment->id }}?page={{ $comments->currentPage() }}" data-bs-toggle="tooltip" title="{{ __('main.edit') }}"><class="fa fa-pencil-alt text-muted"></i></a>
                            @endif

                            @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') }}"><class="fa fa-times text-muted"></i></a>
                            @endif
                        </
div>
                    @endif
                </
div>

                <
div class="section-body border-top">
                    <
div class="section-message">
                        {{ 
bbCode($comment->text) }}
                    </
div>

                    @if (
isAdmin())
                        <
div class="small text-muted fst-italic mt-2">{{ $comment->brow }}, {{ $comment->ip }}</div>
                    @endif
                </
div>
            </
div>
        @endforeach
    @endif

    {{ 
$comments->links() }}

    @if (
getUser())
        @if (! 
$offer->closed)
            @if (
$comments->isEmpty())
                {{ 
showError(__('main.empty_comments')) }}
            @endif

            <
div class="section-form mb-3 shadow">
                <
form action="/offers/comments/{{ $offer->id }}" method="post">
                    @
csrf
                    
<div class="mb-3{{ hasError('msg') }}">
                        <
label for="msg" class="form-label">{{ __('main.message') }}:</label>
                        <
textarea class="form-control markItUp" maxlength="{{ setting('comment_length') }}" id="msg" rows="5" name="msg" required>{{ getInput('msg') }}</textarea>
                        <
div class="invalid-feedback">{{ textError('msg') }}</div>
                        <
span class="js-textarea-counter"></span>
                    </
div>

                    <
button class="btn btn-success">{{ __('main.write') }}</button>
                </
form>
            </
div>

            <
a href="/rules">{{ __('main.rules') }}</a> /
            <
a href="/stickers">{{ __('main.stickers') }}</a> /
            <
a href="/tags">{{ __('main.tags') }}</a><br><br>

        @else
            {{ 
showError(__('main.closed_comments')) }}
        @endif
    @else
        {{ 
showError(__('main.not_authorized')) }}
    @endif
@
stop
?>
Онлайн: 0
Реклама