@extends('front.layouts.app') @section('content')
@include('front.partials.sidebar')
{{ $reel->comments()->count() }}

{{ $reel->caption }}

Comments

@foreach ($reel->comments as $comment)
Commenter Profile
{{ $comment->user->username }}

{{ $comment->created_at->diffForHumans() }}

{{ $comment->comment }}
Reply
@foreach ($comment->replies as $reply)
Reply User Profile
{{ $reply->user->username }}

{{ $reply->created_at->diffForHumans() }}

{{ $reply->content }}
Reply
@endforeach
@endforeach
@endsection @section('script') @endsection