@foreach($new_top_sellers as $key => $top_sellers_product)
@foreach($top_sellers_product->products as $row) @php $product_img = null; if($row->thumbnail){ $product_img = ($row->thumbnail->external_link == null) ? my_asset($row->thumbnail->file_name) : $row->thumbnail->external_link; } $product_url = route('product', $row->product_slug); if ($row->auction_product == 1) { $product_url = route('auction-product', $row->product_slug); } @endphp @endforeach
{{ translate('Item') }} {{ translate('Quantity') }} {{ translate('Total Price') }}
X {{ $row->total_quantity }} {{ single_price($row->sale) }}
@endforeach