@extends('layout.base') @section('page-title', __('basic.Cart')) @section('page-js-script') @endsection @section('container')
{{-- Invoice --}}

{{ __('basic.Invoice') }}

{{-- Content --}} {{-- < div class="row mt-6 mb-3">
--}}
{{-- Payment --}}

{{ __('basic.Payment') }}

@if ($cart_type == 'physical')
@endif
{{-- SHIPPMENT --}}

{{ __('basic.ShippingDetail') }}

@if (!empty($addressList)) @foreach ($addressList as $addr)
@endforeach @endif
{{-- Virtual SHIPPMENT --}} @if ($cart_type == 'virtual')

{{ __('robot.SerialNumberReceiver') }}

{{ __('robot.SerialNumberNotice') }}

{{-- --}}
@endif {{-- CLC折抵 --}}

{{ __('basic.DiscountUsedCLCCoin') }}

{{ sprintf(__('basic.OrderMaxDiscountCoinDesc'), $cart_type == 'virtual' ? session('user_coin_general') : session('user_coin')) }}

Summary

{{ __('basic.Product') }}
    @foreach ($cartList as $k => $cl)
  • Ecommerce

    {{ $cl['stock_name'] }}

    {{-- 價格 --}}
    ${{ number_format($cl['subtotal']) }}
  • @endforeach
{{-- 結算 --}}
  • {{ __('basic.Subtotal') }}
    $ {{-- {{ number_format($cartTotalAmount) }} --}}
  • {{ __('basic.Discount') }}
    -$ 0
  • {{ __('basic.ShippingFee') }}
    $ 0
  • {{ __('basic.Total') }}
    $ {{-- {{ number_format($cartTotalAmount) }} --}} 0
{{ __('basic.EarnCLCCoin') }} {{ $cart_subtotal['coin'] }} {{ __('basic.Coin') }}
@endsection