@extends('frontend.layouts.contentLayoutMaster') {{-- title --}} @section('title','查看訂單') @section('page-styles') @endsection @section('content')
團媽
{{ $order->administrator->name }}

訂單編號
{{ (isset($order) ? $order->code : '(系統產生)') }}
{{-- 玉山信用卡 --}} @if ($order->pay_method_id == 1)
玉山交易序號
{{ $order->payment->code }}
@endif {{-- 發票號碼 --}} @if (!empty($order->invoice->code)) @endif {{-- 貨運單號 --}} @if (!empty($order->freight_code)) @endif {{--
logo
--}}
{{-- 訂單狀態 --}}
訂單狀態
{{ $order->order_status_label }}
{{-- 付款狀態 --}}
付款狀態
{{ $order->pay_status_label }}

訂購人
姓名 : {{ $order->customer->name }}
信箱 : {{ $order->customer->email }}
電話 : {{ $order->customer->cellphone }}
住址 : {{ $order->customer->full_address }}
備註 : {{ $order->customer->remark }}
{{-- 收件人 --}}
收件人
姓名 : {{ $order->receiverOrCustomer->name }}
信箱 : {{ $order->receiverOrCustomer->email }}
電話 : {{ $order->receiverOrCustomer->cellphone }}
住址 : {{ $order->receiverOrCustomer->full_address }}
其他資訊
發票類型:{{ config('invoice.invoice_type')[$order->invoice->invoice_type] }}
載具:{{ $order->invoice->personal_code }}
公司統編:{{ $order->invoice->company_number }}
公司抬頭:{{ $order->invoice->company_title }}
{{--
系統備註
{{ $order->remark }}
--}}
貨運方式
{{ $order->freight_name }} @if (!empty($order->freight_code)) ( 進度查詢 ) @endif @if ($order->shipped_at) 於 {{ optional($order->shipped_at)->format('Y-m-d H:i') }} 出貨 @endif
付款方式
{{ config('order.pay_methods')[$order->pay_method_id]['name'] }} @if ($order->paid_at) 於 {{ optional($order->paid_at)->format('Y-m-d H:i') }} 付款 @endif

購物車項目
{{-- --}} @if ($order->items->isNotEmpty()) @foreach ($order->items as $key => $item) {{-- --}} @endforeach @endif
圖片 名稱 單價 數量 小計操作
{{ $item->product_name }} ({{ implode(',', $item->material_specifications_name) }}) {{ number_format($item->price) }} {{ $item->quantity}} {{-- --}} {{ number_format($item->subtotal) }}
@if ($errors->has('cart_items_json')) @include('admin.panels.input-invalid-messages', [ 'messages' => $errors->get('cart_items_json') ]) @endif
  • 小計
    $ {{ number_format($order->items_total) }}
  • 運費
    $ {{ number_format($order->freight_fee) }}
  • @foreach ($order->discounts as $discount) @if ($discount->discount == 0) @continue @endif
  • {{ $discount->name ?: '折扣' }}
    - $ {{ number_format($discount->discount) }}
  • @endforeach

  • {{--
  • 總折扣
    - $ {{ number_format($order->discounts_total) }}
  • --}}
  • 總計
    $ {{ number_format($order->total) }}
{{-- 付款資訊 --}}
付款資訊
logo
金額
$ {{ number_format($order->total) }}
@if ($order->isUnpaid()) @if ($order->payment->expires_at >= Carbon\Carbon::now() && $order->pay_method_id == 1) {{-- 玉山信用卡 --}}
@elseif ($order->payment->expires_at >= Carbon\Carbon::now() && $order->pay_method_id == 2) {{-- 玉山虛擬帳號 --}}
銀行名稱
{{ config('esun.bankCode') }} {{ config('esun.bankName') }}
分行名稱
{{ config('esun.branchCode') }} {{ config('esun.branchName') }}
匯款戶名
{{ config('esun.accountName') }}
匯款帳號
{{ $order->payment->account }}
@endif
付款期限
{{ $order->payment->expires_at }}
@else
訂單狀態
{{ config('order.order_status')[$order->order_status] }} ({{ $order->pay_status_label }})
@endif
{{-- 發票資訊 --}} @if ($order->invoice->invoice_status == 1)
發票資訊
logo
金額
$ {{ number_format($order->total) }}
發票號碼
{{ $order->invoice->code ?: '-' }}
@if (!empty($order->invoice->preview_link))
檢視發票
@endif
@endif
@endsection @section('page-scripts') @endsection