@foreach(Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->content() as $cart)
{{ $cart->qty }} x{{ $cart->name }}
{{ $currency->value }}: {{ number_format($cart->price,2) }}
@endforeach
{{ __('Subtotal') }}
{{ $currency->value }}: {{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->priceTotal() }}
@if(Session::has('coupon'))
{{ __('Discount') }}
{{ Session::get('coupon')['percent'] }}%
@endif
@if($ordertype == 1)
{{ __('Delivery fee') }}
{{ $currency->value }}:
@endif
{{ __('Total(Incl. VAT)') }}
{{ $currency->value }}: {{ Cart::instance('cart_'.Session::get('restaurant_cart')['slug'])->total() }}