@extends('layouts.site-app') @section('sitecontent')
@include('partials.site.header-menu')
{{__('lang.cart_title')}}
@if(count($data)>0) @if(Session::has('message'))
@endif @if(Session::has('error'))
@endif @endif
@if(count($data)>0) {!! Form::model(null, ['method' => 'POST', 'url' => ['cart-checkout']]) !!} @csrf @foreach($data as $row) @if($row->product)
{{$row->name}} {{$row->product->name}} {{\Helpers::currency($row->total_delivery_amount)}}
order_frequency=='once') checked @endif/> order_frequency=='daily') checked @endif/> order_frequency=='weekly') checked @endif/> order_frequency=='monthly') checked @endif/> order_frequency=='alternative') checked @endif/>

{{__('lang.select_days_for_delivery')}}

{{__('lang.quick_selection')}}

{{__('lang.select_deliver_date')}}

@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