@php use App\Libraries\Number; @endphp @php use App\Presenters\PaymentTypePresenter; @endphp

訂單資訊

訂單日期: {{ $createdAt }}

{{-- 店到店 --}} @if($isCVS)

寄送方式: {{ $shippingType }}

取貨門市: {{ $storeName }}

{{-- 宅配 --}} @elseif($isHomeDelivery)

寄送方式: {{ $shippingType }}

寄送地址: {{ $address }}

{{-- 自取 --}} @elseif($isSelf)

取貨方式: 自取

@endif

付款狀態: {{ $paymentStatusHuman }}

商品清單

@foreach($detailProducts as $detail) @endforeach
商品 / 規格 數量 單價
{{ $detailTitle($detail) }} {{ $detailQuantity($detail) }} {{ $detailSubTotal($detail) }}

商品小計 {{ $productAmount }}

@if(!empty($discountAmount))

優惠券折扣 {{ $discountAmountHuman }}

@endif

運費 {{ $shippingAmount }}

訂單金額 {{ $amount }}

後台查看更多詳細資訊