Customer Comments

@auth
@csrf
@else

Login to add comments.

@endauth @isset($comments) @forelse($comments as $comment)

{{ $comment->content }}

Posted by: {{ $comment->user->name }} | {{ $comment->created_at->diffForHumans() }} @auth @if(auth()->user()->id == $comment->user_id)
@csrf @method('DELETE')
@endif @endauth
@empty

No comments available.

@endforelse @endisset