@extends('layouts.frontend.app') @section('title', trans('general.thematic-areas')) @section('meta_keys', trans('general.thematic-areas')) @section('meta_description', trans('general.thematic-areas')) @section('content') @include('inner.breadcrumb', ['pageTitle' => trans('general.thematic-areas')])
@forelse ($news as $info)

{{ $info->published_date ? \Carbon\Carbon::parse($info->published_date)->format('M d, Y') : \Carbon\Carbon::parse($info->created_at)->format('M d, Y') }}

{{ $info->title }}

@empty
No records found
@endforelse
@if (isset($news) && !$news->isEmpty()) {!! $news->appends(request()->query())->links('layouts.frontend.inc.pagination') !!} @endif
@endsection