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

@
section('title'$item->title)

@
section('header')
    @if (
getUser())
        <
div class="float-end">
            @if (
getUser('id') === $item->user->id)
                <
class="btn btn-success" href="/items/edit/{{ $item->id }}">{{ __('main.change') }}</a>
            @endif

            @if (
isAdmin())
                <
div class="btn-group">
                    <
button type="button" class="btn btn-light dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                        <
class="fas fa-wrench"></i>
                    </
button>
                    <
div class="dropdown-menu dropdown-menu-end">
                        <
class="dropdown-item" href="/admin/items/edit/{{ $item->id }}">{{ __('main.edit') }}</a>
                        <
class="dropdown-item" href="/admin/items/delete/{{ $item->id }}?_token={{ csrf_token() }}" onclick="return confirm('{{ __('boards.confirm_delete_item') }}')">{{ __('main.delete') }}</a>
                    </
div>
                </
div>
            @endif
        </
div>
    @endif

    <
h1>{{ $item->title }}</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="/boards">{{ __('index.boards') }}</a></li>

            @foreach (
$item->category->getParents() as $parent)
                <
li class="breadcrumb-item"><a href="/boards/{{ $parent->id }}">{{ $parent->name }}</a></li>
            @endforeach

            <
li class="breadcrumb-item active">{{ $item->title }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$item->expires_at <= SITETIME)
        <
div class="alert alert-danger">{{ __('boards.item_not_active') }}</div>
    @endif

    <
div class="row mb-3">
        <
div class="col-md-12">
            @if (
$item->files->isNotEmpty())
                <
div class="row">
                    <
div class="col-md-12">
                        @include(
'app/_carousel', ['model' => $item])
                    </
div>
                </
div>
            @endif

            <
div class="row">
                <
div class="col-md-10">
                    <
div class="section-message">
                        {{ 
bbCode($item->text) }}
                    </
div>
                    <
div>
                        @if (
$item->phone)
                            <
span class="badge rounded-pill bg-primary mb-3">{{ __('boards.phone') }}: {{ $item->phone }}</span><br>
                        @endif

                        <
class="fa fa-user-circle"></i> {{ $item->user->getProfile() }} / {{ dateFixed($item->updated_at) }}<br>

                        @if (
$item->expires_at SITETIME)
                            <
class="fas fa-clock"></i> {{ __('boards.expires_in') }} {{ formatTime($item->expires_at SITETIME) }}
                        @endif
                    </
div>
                </
div>

                <
div class="col-md-2">
                    @if (
$item->price)
                        <
button type="button" class="btn btn-info">{{ $item->price }} {{ setting('currency') }}</button>
                    @endif
                </
div>
            </
div>
        </
div>
    </
div>
@
stop
?>
Онлайн: 1
Реклама