@extends('web.layouts.main') @section('content') {{__('news.descriptions')}} {{$news->category->currentDescription->name ?? ""}} {{$news->currentDescription->title ?? ""}} {{date('Y d F', strtotime($news->created_at))}} {!!$news->currentDescription->description?? ""!!} @if(count($otherNews)) {{__('news.blog')}} {{__('media.relatednews')}} @foreach ($otherNews as $value) {{$value->category->currentDescription->name ?? ""}} {{$value->currentDescription->title ?? ""}} {{date('Y d F', strtotime($value->created_at))}} {!! stripText($value->currentDescription->description, 200) !!} {{__('news.more')}} @endforeach {{__('main.show_all')}} @endif @endsection