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

@
section('title'__('index.news') . ' (' __('main.page_num', ['page' => $news->currentPage()]) . ')')

@
section('header')
    @if (
isAdmin('moder'))
        <
div class="float-end">
            <
class="btn btn-light" href="/admin/news"><class="fas fa-wrench"></i></a>
        </
div>
    @endif

    <
h1>{{ __('index.news') }}</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 active">{{ __('index.news') }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$news->isNotEmpty())
        @foreach (
$news as $data)
            <
div class="section mb-3 shadow">
                <
div class="section-header d-flex align-items-center">
                    <
div class="flex-grow-1">
                        <
class="fa fa-file-alt fa-lg text-muted"></i>
                        <
class="section-title" href="/news/{{ $data->id }}">{{ $data->title }}</a>

                        <
small class="section-date text-muted fst-italic">
                            {{ 
dateFixed($data->created_at) }}
                        </
small>
                    </
div>

                    <
div class="js-rating">
                        @if (
getUser() && getUser('id') !== $data->user_id)
                            <
class="post-rating-down{{ $data->vote === '-' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ $data->getMorphClass() }}" data-vote="-" data-token="{{ csrf_token() }}"><class="fas fa-arrow-down"></i></a>
                        @endif
                        <
b>{{ formatNum($data->rating) }}</b>
                        @if (
getUser() && getUser('id') !== $data->user_id)
                            <
class="post-rating-up{{ $data->vote === '+' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ $data->getMorphClass() }}" data-vote="+" data-token="{{ csrf_token() }}"><class="fas fa-arrow-up"></i></a>
                        @endif
                    </
div>
                </
div>

                <
div class="section-content">
                    <
div class="section-message row">
                        @if (
$data->image)
                            <
div class="col-sm-3 mb-3">
                                <
a href="{{ $data->image }}" data-fancybox="gallery-{{ $data->id }}">{{ resizeImage($data->image, ['class' => 'img-thumbnail img-fluid''alt' => $data->title]) }}</a>
                            </
div>
                        @endif

                        <
div class="col">
                            {{ 
$data->shortText() }}
                        </
div>
                    </
div>

                    <
div>
                        {{ 
__('main.added') }}: {{ $data->user->getProfile() }}<br>
                        <
a href="/news/comments/{{ $data->id }}">{{ __('main.comments') }}</a> ({{ $data->count_comments }})
                        <
a href="/news/end/{{ $data->id }}">&raquo;</a>
                    </
div>
                </
div>
            </
div>
        @endforeach
    @else
        {{ 
showError(__('news.empty_news')) }}
    @endif

    {{ 
$news->links() }}

    <
class="fa fa-rss"></i> <a href="/news/rss">{{ __('main.rss') }}</a><br>
    <
class="fa fa-comment"></i> <a href="/news/allcomments">{{ __('main.last_comments') }}</a><br>
@
stop
?>
Онлайн: 0
Реклама