View file resources/views/admin/guestbooks/index.blade.php

File size: 3.3Kb
@extends('layout')

@section('title')
    {{ __('index.guestbooks') }}
@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="/admin">{{ __('index.panel') }}</a></li>
            <li class="breadcrumb-item active">{{ __('index.guestbooks') }}</li>
            <li class="breadcrumb-item"><a href="/guestbooks?page={{ $posts->currentPage() }}">{{ __('main.review') }}</a></li>
        </ol>
    </nav>
@stop

@section('content')
    @if ($posts->isNotEmpty())
        <form action="/admin/guestbooks/delete?page={{ $posts->currentPage() }}" method="post">
            @csrf
            @foreach($posts as $data)
                <div class="post">
                    <div class="b">
                        <div class="img">
                            {!! $data->user->getAvatar() !!}

                            @if ($data->user_id)
                                {!! $data->user->getOnline() !!}
                            @endif
                        </div>

                        <div class="float-right">
                            <a href="/admin/guestbooks/reply/{{ $data->id }}?page={{ $posts->currentPage() }}"><i class="fa fa-reply text-muted"></i></a>
                            <a href="/admin/guestbooks/edit/{{ $data->id }}?page={{ $posts->currentPage() }}"><i class="fas fa-pencil-alt text-muted"></i></a>
                            <input type="checkbox" name="del[]" value="{{ $data->id }}">
                        </div>

                        @if ($data->user_id)
                            <b>{!! $data->user->getProfile() !!}</b> <small>({{ dateFixed($data->created_at) }})</small><br>
                            {!! $data->user->getStatus() !!}
                        @else
                            <b class="author" data-login="{{ setting('guestsuser') }}">{{ setting('guestsuser') }}</b> <small>({{ dateFixed($data->created_at) }})</small>
                        @endif
                    </div>

                    <div class="message">{!! bbCode($data->text) !!}</div>

                    @if ($data->edit_user_id)
                        <small><i class="fa fa-exclamation-circle text-danger"></i> {{ __('main.changed') }}: {{ $data->editUser->getName() }} ({{ dateFixed($data->updated_at) }})</small><br>
                    @endif

                    <span class="data">({{ $data->brow }}, {{ $data->ip }})</span>

                    @if ($data->reply)
                        <br><span style="color:#ff0000">{{ __('main.reply') }}: {!! bbCode($data->reply) !!}</span>
                    @endif
                </div>
            @endforeach

            <div class="float-right">
                <button class="btn btn-sm btn-danger">{{ __('main.delete_selected') }}</button>
            </div>
        </form>

        {{ $posts->links('app/_paginator') }}

        {{ __('guestbooks.total_messages') }}: <b>{{ $posts->total() }}</b><br><br>

        @if (isAdmin('boss'))
            <i class="fa fa-times"></i> <a href="/admin/guestbooks/clear?token={{ $_SESSION['token'] }}" onclick="return confirm('{{ __('guestbooks.confirm_delete') }}')">{{ __('main.clear') }}</a><br>
        @endif
    @else
        {!! showError(__('main.empty_messages')) !!}
    @endif
@stop