@extends ('site::public.layout') @section('content')
{{ $section_data['title'] }}
{{ $section_data['title_secondary'] }}
{{ $section_data['excerpt'] }}
@if(!$getArticles['data']->isEmpty())
{{ $section_data['article_more'] }}
@foreach($getArticles['data'] as $article)
{{ $article->title }}
@foreach($article->relatedCategory as $relCategory) {{ $relCategory->category->outputTranslate('title', session('locale')) }} @endforeach

{!! get_staticwording('posted', session('locale')) !!}: {{ date('d/m/Y', strtotime($article->created_at)) }}

{{ $article->outputTranslate('title', session('locale')) }}

{{ $article->outputTranslate('excerpt', session('locale')) }}

{!! get_staticwording('readmore', session('locale')) !!}
@endforeach
{!! $pagination !!}
@endif
@stop @push('additional_script') @endpush