@endif
{{-- Media existing --}}
@if($rv->media->isNotEmpty())
@foreach($rv->media as $media)
@if($media->media_type === 'photo')
@else
@endif
@endforeach
@endif
{{-- Tombol Edit --}}
{{-- Form Edit Ulasan (hidden by default) --}}
@endif
@endforeach
{{-- 2. Form Master untuk semua produk yang BELUM diulas --}}
@php
$unreviewedIds = $allProductIds->filter(fn($id) => !isset($existingReviews[$id]));
@endphp
@if($unreviewedIds->count() > 0)
@endif
@endsection