@include('alerts')
Product Name: {{ $product->product_name }}
Description:{{ $product->description }}
Price: {{ $product->price }}
Comments & Replies
@forelse ($product->comments as $comment)
{{-- {{dd($comment)}} --}}
{{ $comment->customer->name }}: {{ $comment->body }}
{{ $comment->created_at->diffForHumans() }}
{{-- Display Replies --}}
@if($comment->replies->count())
@include('vendor.product.partials_comment', ['comments' => $comment->replies])
@endif
{{-- Reply Form --}}
@empty
No comments yet. Be the first to comment!
@endforelse
{{-- Comment Form --}}
{{--
--}}
@endsection
@section('footer-script')
@endsection