@extends('layouts.master') @section('contain') {{-- title --}}

News Feed Detail

{{-- end title --}}
Post Description

{!! $news_feed->description ?? 'N/A' !!}

@foreach ($news_feed->comments as $comment)
{{ $news_feed->user_name }}
{{ $comment->created_at->format('d F Y') }}

{{ $comment->message ?? '-' }}

{{-- --}}
{{--
7
--}}
@endforeach
@endsection