@php
$image = isset($row->image) && $row->image ? json_decode($row->image) : [];
$image = isset($image[0]) ? $image[0] : "";
@endphp
@include('frontend.partials.fileRender', ['file' => $image, 'size' => "medium"])
@php
$price = $row->variant ? Arr::pluck($row->variant,"price") : null;
$minPrice = $price ? min($price) : null;
@endphp