@if(count($data)>0)
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
@endif
@if(count($data)>0)
{!! Form::model(null, ['method' => 'POST', 'url' => ['cart-checkout']]) !!}
@csrf
@foreach($data as $row)
@if($row->product)
@endif
@endforeach
{{\Helpers::currency($total['subtotal'])}}
{{\Helpers::currency($total['tax'])}}
{{($total['delivery_fee']>0)?\Helpers::currency($total['delivery_fee']):__('lang.order_delivery_free')}}
@if($total['is_coupon_applied']) -{{\Helpers::currency($total['promotional_disount'])}}
{{__('lang.change_coupon_btn')}} @else {{__('lang.apply_coupon_btn')}} @endif
{{\Helpers::currency($total['final_amount'])}}
{!! Form::close() !!}
@else
{{__('lang.not_any_item_in_cart')}}