{{ $news->title }}
{{ $news->created_at->format('M d, Y') }}
@extends('landingpage::themes.job_board.layouts.master') @php // $newsItems is paginated collection from PublicPageController (assuming it's LpPage for now) // $pageTitle, $metaDescription, $activeTheme are also available $page = (object) [ 'title' => $pageTitle ?? 'Latest News', 'meta_title' => $pageTitle ?? 'Latest News - ' . setting('site_name'), 'meta_description' => $metaDescription ?? 'Stay updated with our latest news and articles.', 'meta_keywords' => 'news, articles, updates, blog', 'slug' => 'news' ]; @endphp @section('theme_content')
{{ $page->meta_description }}
@endif{{ $news->created_at->format('M d, Y') }}
No news articles found at the moment. Please check back later.
@endif