{{ $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 --}}