{{ __('Comments') }}

@foreach ($comments as $comment) @endforeach
{{ __('Commented By') }} {{ __('Content') }} {{ __('Rating') }} {{ __('Action') }}
{{ $comment->commentBy->name }}
@for ($i = 1; $i <= 10; $i++) @php $starValue = $i / 2; $isFilled = $starValue <= $comment->rating; @endphp @endfor
{{ __('Edit') }}
@csrf @method('DELETE')
@if(count($comments ) === 0)

{{ __('There is no comments.') }}

@endif @if ($comments->hasPages())
{!! $comments->links() !!}
@endif