@foreach ($reviews as $review)
@continue(! $review->is_approved && auth('customer')->id() != $review->customer_id)
@php
$isCurrentCustomerReview = auth('customer')->check() && auth('customer')->id() == $review->customer_id;
@endphp
! $loop->last,
'opacity-50' => ! $review->is_approved,
'current-customer-review' => $isCurrentCustomerReview
])>
@include(EcommerceHelper::viewPath('includes.rating-star'), ['avg' => $review->star, 'size' => 80])
{{ $review->comment }}
@if ($review->images)
@foreach ($review->images as $image)
@endforeach
@endif
@if ($review->reply)
{{ $review->reply->message }}
@endif
@endforeach