@extends('layouts.frontend.app') @section('title', $title) @section('meta_keys', $title) @section('meta_description', $title) @section('content') @include('inner.breadcrumb', ['pageTitle' => $title])
@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