{{ __('Payment Verification') }} - {{ $payment->member->full_name }}

@if (session('status'))

{{ session('status') }}

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

{{ session('error') }}

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

{{ __('Payment Details') }}

{{ __('Member') }}
{{ $payment->member->full_name }}
{{ $payment->member->email }}
{{ __('Status') }}
{{ $payment->status_label }}
{{ __('Amount') }}
TWD {{ number_format($payment->amount, 0) }}
{{ __('Payment Date') }}
{{ $payment->paid_at->format('Y-m-d') }}
{{ __('Payment Method') }}
{{ $payment->payment_method_label }}
{{ __('Reference Number') }}
{{ $payment->reference ?? '—' }}
{{ __('Submitted By') }}
{{ $payment->submittedBy->name }} on {{ $payment->created_at->format('Y-m-d H:i') }}
@if($payment->notes)
{{ __('Notes') }}
{{ $payment->notes }}
@endif @if($payment->receipt_path)
{{ __('Payment Receipt') }}
{{ __('Download Receipt') }}
@endif
{{-- Verification History --}}

{{ __('Verification History') }}

    @if($payment->verifiedByCashier)
  • {{ __('Verified by Cashier') }}: {{ $payment->verifiedByCashier->name }}

    {{ $payment->cashier_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->verifiedByAccountant)
  • {{ __('Verified by Accountant') }}: {{ $payment->verifiedByAccountant->name }}

    {{ $payment->accountant_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->verifiedByChair)
  • {{ __('Final Approval by Chair') }}: {{ $payment->verifiedByChair->name }}

    {{ $payment->chair_verified_at->format('Y-m-d H:i') }}
  • @endif @if($payment->rejectedBy)
  • {{ __('Rejected by') }}: {{ $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())

{{ __('Verification Actions') }}

@if($payment->canBeApprovedByCashier() && Auth::user()->can('verify_payments_cashier'))
@csrf
@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 --}}
← {{ __('Back to List') }}