@extends('index') @section('content')

訂單詳細

訂單編號:O250804000001

no
品名
單價
數量
合計
@php $no = 0; @endphp @foreach ($orderDetailData->orderRecordProducts as $productInfo)
{{$no += 1}}
{{$productInfo->product_name}}
NT$ {{number_format($productInfo->product_price)}}
{{$productInfo->product_qty}}
NT$ {{number_format($productInfo->product_price * $productInfo->product_qty)}}
@endforeach

結帳金額

合計 NT$ {{number_format((int)$orderDetailData->order_products_price)}}
優惠碼折扣 - NT ${{number_format((int)$orderDetailData->order_coupon_price)}}
優惠活動折扣 - NT ${{number_format((int)$orderDetailData->order_preferential_price)}}
運費 {{number_format((int)$orderDetailData->order_freight_price) ?: __('custom.免運')}}
訂單金額 NT$ {{number_format((int)$orderDetailData->order_total_price)}}
@endsection