@extends('web_stores.layouts.app') @section('content')

{{$page_title}}

@if(count($carts)) @foreach($carts as $row) @php $i=0; @endphp
{{$row['company_name']}}
@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
@endforeach @endif

{!!Form::checkbox('select_all', null, true, ['onclick'=>'init_cart_check_list(this)'])!!} {{App\Language::trans('Select All')}}
{{App\Language::trans('Total :')}} {{($currency_code)}} {{$setting->getDouble($total)}}
{{App\Language::trans('Checkout')}}
@stop @section('script') @stop