Welcome to our newpost page
Leave a Comment 22
@if (session('success'))
{{ session('success') }}
@endif
@csrf
Name:
Email:
Comment:
Comment Pages url:
Submit
Comments
@if ($comments->isEmpty())
No comments yet.
@else
@foreach ($comments->sortByDesc('comment_date') as $comment)
{{ $comment->comment_author }}
({{ $comment->comment_author_email }})
{{ $comment->comment_content }}
{{ $comment->comment_date }}
@endforeach
@endif
Leave a Comment 22
@if (session('success'))