@extends('layout.base') @section('page-title', 'Cart') @section('page-js-script') @endsection @section('container')
@foreach ($cartListType as $list) {{--
--}} @if (count($list['item']) > 0)
{{-- --}}

{{ $list['name'] }}

{{ __('basic.Product') }}
{{ __('basic.Quantity') }}
{{ __('basic.Subtotal') }}
    @foreach ($list['item'] as $k => $cl)
  • Ecommerce
    {{ $cl['stock_name'] }}
    {{ str_replace('_', '-', $cl['stock_spec_id']) }}
    {{ __('robot.InventoryQuantity') }} : {{ $cl['stock_inv'] }}
    {{ __('robot.MinimumPurchaseQuantity') }} : {{ $cl['stock_min_buy_num'] }}
    $ {{ number_format($cl['subtotal']) }}
  • @endforeach
    {{ __('basic.Total') }} :
    @if ($verify == 0 && $list['key'] == 'virtual')

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

    @endif
@endif @endforeach

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

{{-- 折抵 --}} {{--
{{ __('basic.DiscountUsedCLCCoin') }}
--}} {{-- 結算 --}}
  • {{ __('basic.Summary') }}
    $
  • {{--
  • {{ __('basic.ShippingFee') }}
    $ 0
  • --}} {{--
  • {{ __('basic.DiscountUsedCLCCoin') }}
    - $ 0
  • --}}
  • {{ __('basic.Subtotal') }}
    $
@endsection