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

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

@
section('header')
    <
h1>{{ __('forums.title_active_posts', ['user' => $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="/forums">{{ __('index.forums') }}</a></li>
            <
li class="breadcrumb-item active">{{ __('forums.title_active_posts', ['user' => $user->getName()]) }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$posts->isNotEmpty())
        @foreach (
$posts as $data)
            <
div class="section mb-3 shadow">
                <
class="fa fa-file-alt"></i> <b><a href="/topics/{{ $data->topic_id }}/{{ $data->id }}">{{ $data->topic->title }}</a></b>

                @if (
isAdmin())
                    <
a href="/forums/active/delete/{{ $data->id }}" class="float-end" onclick="return deletePost(this)" data-token="{{ csrf_token() }}" data-bs-toggle="tooltip" title="{{ __('main.delete') }}"><class="fa fa-times"></i></a>
                @endif

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

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

                    @if (
isAdmin())
                        <
div class="small text-muted fst-italic mt-2">({{ $data->brow }}, {{ $data->ip }})</div>
                    @endif
                </
div>
            </
div>
        @endforeach
    @else
        {{ 
showError(__('forums.posts_not_created')) }}
    @endif

    {{ 
$posts->links() }}
@
stop
?>
Онлайн: 1
Реклама