@foreach($row['items'] as $index => $item)
@if($i > 0)
@endif
{!!Form::checkbox('products['.$index.'][product_id]', $item['product_id'], true, ['onclick'=>'init_cart_select_all()'])!!}
{{$item['product_name']}}
{!!Form::hidden('products['.$index.'][product_quantity]', $item['product_quantity'], ['class'=>'product_quantity'])!!}
{{$row['currency_code']}} {{$setting->getDouble($item['product_price'])}}
@php
$i++;
$total += ($item['product_quantity'] * $item['product_price']);
@endphp
@endforeach