@extends('web.layouts.container') @section('content')
/ {{ __('main.news') }}

{{ __('main.news') }}

{{ date('d', strtotime($article->news_date)) }}

{{ date('M', strtotime($article->news_date)) }}
{{ date('Y', strtotime($article->news_date)) }}

{!! footerLink($description->title, false, false, 3) !!}

{!! $description->description !!}

{!! footerLink(__('main.related_news')) !!}

@foreach ($articles as $item)
{{ date('d', strtotime($item->news_date)) }}

{{ date('M', strtotime($item->news_date)) }}
{{ date('Y', strtotime($item->news_date)) }}

{{ $item->currentDescription->title }}
{{ __('main.learn_more') }}
@endforeach
{{ __('main.view_more') }}
@include('web.layouts.downloading')
@endsection @section('content_js') @endsection