@foreach ($comments as $comment)
| {{ $comment->name }} |
{{ Str::limit($comment->content, 50) }} |
({{ $comment->rate }})
@for ($star = 1; $star <= 5; $star++)
@if ($star <=$comment->rate)
★
@else
★
@endif
@endfor
|
|
@can('comment.status.update')
@endcan
|
@endforeach
@endsection