{{ __('This member has a fully approved payment and is ready for membership activation.') }}
{{ __('No roles assigned.') }}
@endforelse| {{ __('Paid at') }} | {{ __('Amount') }} | {{ __('Method') }} | {{ __('Status') }} | {{ __('Submitted By') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ optional($payment->paid_at)->toDateString() }} | TWD {{ number_format($payment->amount, 0) }} | {{ $payment->payment_method_label ?? ($payment->method ?? __('N/A')) }} | {!! $payment->status_label ?? '' . __('Legacy') . '' !!} |
@if($payment->submittedBy)
{{ $payment->submittedBy->name }}
@else
{{ __('Admin') }}
@endif
|
@if($payment->status) {{-- New payment verification system --}} @if(Auth::user()->can('view_payment_verifications') || Auth::user()->is_admin) {{ __('Verify') }} @endif @if($payment->receipt_path) {{ __('Receipt') }} @endif @else {{-- Legacy admin-created payments --}} {{ __('Receipt') }} {{ __('Edit') }} @endif |
|
{{ __('No payment records found.') }} |
|||||