{{--
{{__('web.total_products')}} {{number_format($total_products,2)}}
{{__('web.shipping_cost')}} {{ __('web.free') }}
@if($discount != 0)
{{__('web.discount_amount')}} {{number_format($discount,2)}}
@endif
{{__('web.tax')}} ({{$settings['tax_value']}}%) {{number_format($total_tax,2)}}
{{__('web.total_order')}} {{ number_format($total,2) }}
@if($request->coupon) @if($discount != 0) @else @endif @endif

{{$discount_msg}} @if($discount != 0) @if($discount_type == 'value') @else % @endif @endif

--}}
@if(count($products)) @foreach($products as $row)
{{$row['product']->currentDescription->title}}
{{ $row['product']->price }} @if($row['product']->cost_discount) {{ $row['product']->cost }} @endif
@endforeach @else @include('web.pages.components.not_found',['message'=>__('web.not_found_product_cart')]) @endif
{{__('web.total_products')}} {{number_format($total_products,2)}}
{{ __('web.shipping') }} {{ __('web.free') }}
@if($discount != 0)
{{__('web.discount_amount')}} {{number_format($discount,2)}}
@endif
{{__('web.tax')}} ({{$settings['tax_value']}}%) {{number_format($total_tax,2)}}
{{__('web.total_order')}} {{ number_format($total,2) }}