@foreach ($composer->getReviewSites() as $site)
@php
$url = file_url($site['image']);
$width = @$site['width'] ?? 50;
$width = filter_var($width, FILTER_SANITIZE_NUMBER_INT);
$width = max(20, min(100, $width));
$background_color = @$site['background_color'] ?? 'transparent';
@endphp
@if (!empty($url))
@endif
@endforeach