@extends("vendor.template", ["pageTitle"=>$pageTitle]) @section('content')
@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 --}}
@csrf
@empty

No comments yet. Be the first to comment!

@endforelse {{-- Comment Form --}} {{--
@csrf
--}}
@endsection @section('footer-script') @endsection