{{ trans('plugins/payment::payment.information') }}
{!! apply_filters('payment-transaction-card-actions', null, $payment) !!}
@if ($payment->customer_id && $payment->customer && $payment->customer_type && class_exists($payment->customer_type))
{{ trans('plugins/payment::payment.payer_name') }}
@if($payment->customer->avatar_url)
@endif
{{ $payment->customer->name }}
{{ trans('plugins/payment::payment.email') }}
{{ $payment->customer->email }}
@if ($payment->customer->phone)
{{ trans('plugins/payment::payment.phone') }}
{{ $payment->customer->phone }}
@endif
@endif
{{ trans('plugins/payment::payment.payment_channel') }}
{{ $payment->payment_channel->label() }}
{{ trans('plugins/payment::payment.total') }}
{{ $payment->amount }} {{ $payment->currency }}
{{ trans('plugins/payment::payment.created_at') }}
{{ BaseHelper::formatDateTime($payment->created_at) }}
{{ trans('plugins/payment::payment.status') }}
{!! BaseHelper::clean($payment->status->toHtml()) !!}
{!! $detail !!}
@php
do_action(BASE_ACTION_META_BOXES, 'advanced', $payment);
@endphp
@include('core/base::forms.partials.form-actions', [
'title' => trans('plugins/payment::payment.action'),
])
{!! Form::customSelect('status', $paymentStatuses, $payment->status) !!}
@php
do_action(BASE_ACTION_META_BOXES, 'side', $payment);
@endphp