@extends('layouts.app') @section('content')
@if(isset($prev) && !empty($prev)) {{ trans('interface.news-prev') }} @endif
@if(isset($next) && !empty($next)) {{ trans('interface.news-next') }} @endif
{{ $news->news_date->format('d/m/Y') }} - @if(isset($news->country) && isset($news->country->country)) {{ trans('interface.' . strtolower($news->country->country->country)) }} @else {{ trans('interface.worldwide') }} @endif @if(isset($news->season)) - {{ $news->season->prefisso }} @endif @if(isset($news->year)) {{ $news->year->year }} @endif
@if(App::getLocale() == 'en')
{{ $news->english->title }}
{{ $news->english->subtitle }}
@else
{{ $news->title }}
{{ $news->subtitle }}
@endif
@if(App::getLocale() == 'en') {!! $news->english->description !!} @else {!! $news->description !!} @endif
@include('includes.video-wrapper') @endsection