{{-- check if user is authenticated to display comment form --}} @if (Auth::check())
{{-- --}} @include('comments.form_create')
@endif

Comments

@foreach ($post_comments as $comment)

{{ $comment->body }}

@endforeach