@extends('frontend.layouts.app') @section('content')
@if($post->featured_image)
@endif

News Article

{{ $post->title }}

{{ $post->published_at ? $post->published_at->format('F d, Y') : $post->created_at->format('F d, Y') }}

@if($post->excerpt)
{{ $post->excerpt }}
@endif
{!! $post->content !!}
Share on WhatsApp Share on X Back to News

Leave a Comment

@if(session('success'))
{{ session('success') }}
@endif
@csrf

Comments

@forelse($post->comments as $comment)

{{ $comment->name }}

{{ $comment->created_at->format('F d, Y') }}

{{ $comment->message }}

@empty
No comments yet.
@endforelse
@endsection