@if (belongs_to_auth($post->user_id) || is_admin()) @include('posts.include.dropdown_menu') @endif
{{ $post->content }}
@include('posts.include.likes')
@if (Auth::check()) @include('comments.create') @endif
@foreach ($post->comments as $comment) @include('comments.include.single') @endforeach