@extends('layout.front.app') @section('title', $row->translation->title) @section('description', $row->translation->description) @section('page_img', $row->news_img) @section('content')

@yield('title')

I'm an image! {{ formatDate($row->created_at) }}
{!! $row->translation->content !!}


    @if (!empty($row->translation->tags)) @php $tags = explode(',', $row->translation->tags); @endphp @foreach ($tags as $tag)
  • {{$tag}}
  • @endforeach @endif
{{ $row->writer->name }}

{{ $row->writer->name }}

{!! $row->writer->description !!}

{{__('front.other_author_articles')}}

@if($writerArticles->isEmpty())

{{ __('front.author_no_content') }}

@else @foreach ($writerArticles as $writerArticle) {{formatDate($writerArticle->created_at)}}

{{$writerArticle->translation->title}}


@endforeach @endif

{{ __('front.related_topics') }}

@foreach ($related_topics as $topic) {{formatDate($topic->created_at)}}

{{$topic->translation->title}}


@endforeach

{{__('front.recent')}} {{ $row->category->name }}

@foreach ($mostRecent as $most)

{{ $most->translation->title }}


@endforeach
@endsection @section('js') @endsection