@extends('web.layouts.app') @section('content')
{{ $news->description }}
{{ $news->description ?? 'Super Admin' }}
{{ $comment->message }}
{{ __('No comments yet') }}
{{ __('Required fields are marked') }}
{{ __('Comments') }} ({{ $news->comments->count() }})
@forelse ($news->comments as $comment){{ $comment->title ?? '-' }}
Submitted {{ $comment->created_at->diffForHumans() }} by {{ $comment->author_name ?? 'Anonymous' }}{{ $comment->message }}
{{ __('No comments yet') }}
@endforelse