@extends('templates.'. $template_name .'.layouts.default') @section('title', trans('message.shipping')) @section('content')

{{trans('message.shopping_cart')}}

{{trans('message.check_out')}}

{{trans('message.review_orders')}}

@if(!empty($pickup_info))
{{trans('message.shipping_method')}}
{{strtoupper(trans('message.pickup_in_store'))}} {{trans('message.store_name') . ": " . @$pickup_info['shop_name']}}
@else
{{trans('message.shipping_method')}}
{{strtoupper(trans('message.delivery'))}} {{trans('message.name') . ": " . @$delivery_info['name']}} {{trans('message.phone') . ": " . @$delivery_info['phone']}} {{trans('message.address') . ": " . @$delivery_info['address']}} {{trans('message.gps_location') . ": "}}
@endif
{{trans('message.payment_method')}}
{{trans('message.cash_on_delivery')}}
@if(!empty($card_info))
{{trans('message.membership_card')}}
{{$card_info['card_title']}} @if($is_discount_card) {{trans('message.discount') . ": " . $percentage_discount . "%"}} @else {{trans('message.card_balance') . ": " . $card_info['card_balance']}} @endif
@if(!$is_discount_card)
{{trans('message.redemption')}}
{{@$redeem_info['str_redemption']}}
@endif @endif {{trans('message.back_to_check_out')}}

{{trans('message.your_order')}}

{!! Form::open(['url' => url('/post-complete-order'), 'method' => 'POST', 'id' => 'frmCompleteOrder']) !!}

{{strtoupper(trans('message.product'))}} {{strtoupper(trans('message.total'))}}

    @foreach($shopping_cart as $k => $v)
  • {{$v['name'] . " x " . $v['qty']}} {{getPriceFormat(($v['price']*$v['qty']), $currency_sign)}}
  • @endforeach
  • {{trans('message.cart_subtotal')}} {{getPriceFormat($amount_info['sub_total'], $currency_sign)}}
  • {{trans('message.vat')}} {{getPriceFormat($amount_info['total_tax'], $currency_sign)}}
  • {{trans('message.discount_from_card')}} {{getPriceFormat($amount_info['total_discount'], $currency_sign)}}
  • {{trans('message.redeem')}} {{getPriceFormat($amount_info['total_redemption'], $currency_sign)}}
  • {{trans('message.order_total')}} {{getPriceFormat($amount_info['total'], $currency_sign)}}
{!! Form::close() !!}
@endsection @section('script') @endsection