@extends('admin.layouts.master') @section('title') Post Details @endsection @section('content') Back to Posts {{ $post->user->name }} {{ $post->created_at }} {{ $post->description }} @if($post->images->count() > 0) @foreach($post->images as $image) @endforeach @endif 👍 Like{{ $likesCount }} 👎 Dislike0 @if($post->comments->count() > 0) Comments ({{ $commentsCount }}) @foreach($post->comments as $comment) {{ $comment->user->name }} {{ $comment->content }} {{ $comment->created_at }} @foreach($comment->replies as $reply) {{ $reply->user->name }} {{ $reply->content }} {{ $reply->created_at }} @endforeach @endforeach @endif @endsection
{{ $post->description }}
Like{{ $likesCount }}
Dislike0
Comments ({{ $commentsCount }})
@foreach($post->comments as $comment)