@extends('layouts.app') @section('content') @include('includes.filters') @include('includes.country-filter') @include('includes.pagination', ['paginator' => $news,'position' => 'top'])
@if(count($news) > 0) @foreach($news as $key => $article)
{{ $article->news_date->format('d/m/Y') }} - @if(isset($article->country) && isset($article->country->country)) {{ trans('interface.' . strtolower($article->country->country->country)) }} @else {{ trans('interface.worldwide') }} @endif @if(isset($article->season)) - {{ $article->season->prefisso }} @endif @if(isset($article->year)) {{ $article->year->year }} @endif
@if(App::getLocale() == 'en')
{{ $article->english->title }}
{{ $article->english->subtitle }}
@else
{{ $article->title }}
{{ $article->subtitle }}
@endif
@if((($key + 1) % 2) === 0) @endif @endforeach @else
{{ trans('interface.empty-list') }}
@endif
@include('includes.pagination', ['paginator' => $news,'position' => 'bottom']) @include('includes.video-wrapper') @endsection