@extends('web.layouts.app') @section('content')
{{ $news->title }}

{{ $news->title }}

{!! $news->content !!}

Comments ({{ $news->comments->count() }})

@foreach ($news->comments as $comment)
{{ $comment->title }}
By {{ $comment->author_name ?? 'Anonymous' }} on {{ \Carbon\Carbon::parse($comment->created_at)->format('d M, Y') }}

{{ $comment->message }}

@endforeach

Leave a Comment

@csrf
@endsection