{{-- Payment Information Section --}} @if($order->payments->count() > 0)
{{ __('panel/order.payment_info') }}
@foreach ($order->payments as $payment) @endforeach
{{ __('panel/order.payment_id') }} {{ __('panel/order.charge_id') }} {{ __('panel/order.payment_amount') }} {{ __('panel/order.handling_fee') }} {{ __('panel/order.payment_status') }} {{ __('panel/order.payment_time') }} {{ __('panel/order.payment_certificate') }} {{ __('panel/order.payment_details') }}
{{ $payment->id }} {{ $payment->charge_id }} {{ $payment->amount_format }} {{ $payment->handling_fee_format }} @include('panel::shared.list_switch', [ 'value' => $payment->paid, 'url' => panel_route('payments.active', $payment->id) ]) {{ $payment->created_at }} @if($payment->certificate)
{{ __('panel/order.payment_certificate') }}
@else - @endif
@if($payment->reference) @else - @endif
{{-- Payment Reference Modals --}} @foreach ($order->payments as $payment) @if($payment->reference) @endif @endforeach {{-- Certificate Image Modal --}} {{-- Payment Related JavaScript Functions --}} @push('footer') @endpush @endif @hookinsert('panel.orders.detail.payment_info.after')