File size: 2.74Kb
@extends('layout')
@section('title')
{{ __('index.news') }} ({{ __('main.page_num', ['page' => $news->currentPage()]) }})
@stop
@section('header')
<h1>{{ __('index.news') }}</h1>
@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 active">{{ __('index.news') }}</li>
@if (isAdmin('moder'))
<li class="breadcrumb-item"><a href="/admin/news">{{ __('main.management') }}</a></li>
@endif
</ol>
</nav>
@stop
@section('content')
@if ($news->isNotEmpty())
@foreach ($news as $data)
<div class="b">
<i class="fa fa-file-alt fa-lg text-muted"></i>
<b><a href="/news/{{ $data->id }}">{{ $data->title }}</a></b><small> ({{ dateFixed($data->created_at) }})</small>
<div class="float-right js-rating">
@if (getUser() && getUser('id') !== $data->user_id)
<a class="post-rating-down{{ $data->vote === '-' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ App\Models\News::class }}" data-vote="-" data-token="{{ $_SESSION['token'] }}"><i class="fa fa-thumbs-down"></i></a>
@endif
<span>{!! formatNum($data->rating) !!}</span>
@if (getUser() && getUser('id') !== $data->user_id)
<a class="post-rating-up{{ $data->vote === '+' ? ' active' : '' }}" href="#" onclick="return changeRating(this);" data-id="{{ $data->id }}" data-type="{{ App\Models\News::class }}" data-vote="+" data-token="{{ $_SESSION['token'] }}"><i class="fa fa-thumbs-up"></i></a>
@endif
</div>
</div>
@if ($data->image)
<div class="img">
<a href="{{ $data->image }}" class="gallery">{!! resizeImage($data->image, ['width' => 100, 'alt' => $data->title]) !!}</a>
</div>
@endif
<div class="clearfix">{!! $data->shortText() !!}</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 }}">»</a>
</div>
@endforeach
@else
{!! showError(__('news.empty_news')) !!}
@endif
{{ $news->links('app/_paginator') }}
<i class="fa fa-rss"></i> <a href="/news/rss">{{ __('main.rss') }}</a><br>
<i class="fa fa-comment"></i> <a href="/news/allcomments">{{ __('main.last_comments') }}</a><br>
@stop