付款驗證 - {{ $payment->member->full_name }}

@if (session('status'))

{{ session('status') }}

@endif @if (session('error'))

{{ session('error') }}

@endif {{-- Payment Details --}}

付款詳情

會員
{{ $payment->member->full_name }}
{{ $payment->member->email }}
狀態
{{ $payment->status_label }}
會費類型
{{ $payment->fee_type_label }}
繳納金額
TWD {{ number_format($payment->amount, 0) }}
@if($payment->base_amount)
原始金額
TWD {{ number_format($payment->base_amount, 0) }}
@endif @if($payment->disability_discount)
身心障礙優惠
-TWD {{ number_format($payment->discount_amount, 0) }}
@endif @if($payment->final_amount)
應繳金額
TWD {{ number_format($payment->final_amount, 0) }}
@endif
付款日期
{{ $payment->paid_at->format('Y-m-d') }}
付款方式
{{ $payment->payment_method_label }}
參考編號
{{ $payment->reference ?? '—' }}
提交者
{{ $payment->submittedBy->name }} on {{ $payment->created_at->format('Y-m-d H:i') }}
@if($payment->notes)
備註
{{ $payment->notes }}
@endif @if($payment->receipt_path)
付款收據
下載收據
@endif
{{-- Verification History --}}

驗證歷史

    @if($payment->verifiedByCashier)
  • 出納已驗證: {{ $payment->verifiedByCashier->name }}

    {{ $payment->cashier_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->verifiedByAccountant)
  • 會計已驗證: {{ $payment->verifiedByAccountant->name }}

    {{ $payment->accountant_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->verifiedByChair)
  • 主席最終核准: {{ $payment->verifiedByChair->name }}

    {{ $payment->chair_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->rejectedBy)
  • 拒絕者: {{ $payment->rejectedBy->name }}

    @if($payment->rejection_reason)

    {{ $payment->rejection_reason }}

    @endif
    {{ $payment->rejected_at->format('Y-m-d H:i') }}
  • @endif
{{-- Verification Actions --}} @if(!$payment->isRejected() && !$payment->isFullyApproved())

驗證操作

@if($payment->canBeApprovedByCashier() && Auth::user()->can('verify_payments_cashier'))
@csrf {{-- Disability Certificate Verification (if applicable) --}} @if($payment->member->hasDisabilityCertificate() && $payment->member->isDisabilityPending())

身心障礙手冊審核

此會員已上傳身心障礙手冊,請一併審核:

檢視身心障礙手冊

* 通過後,會員未來繳費將自動享有 50% 優惠

@endif
@endif @if($payment->canBeApprovedByAccountant() && Auth::user()->can('verify_payments_accountant'))
@csrf
@endif @if($payment->canBeApprovedByChair() && Auth::user()->can('verify_payments_chair'))
@csrf
@endif {{-- Reject Form --}}
@csrf
@endif {{-- Back Button --}}
← 返回列表
@push('scripts') @endpush