@extends('landingpage::themes.job_board.layouts.master') {{-- $page is the LpPage object representing the news article (or a dedicated Article model instance in the future) $article is an alias for $page if using LpPage, or the dedicated Article model. --}} @section('theme_content')

{{ $article->title }}

@if($article->created_at) {{-- Or a specific published_at date --}} Published: {{ $article->created_at->format('M d, Y') }} @endif {{-- Add author, category if available --}}
{!! $article->content !!} {{-- This assumes news content is stored in LpPage's content field --}}
@endsection