@if ($payment)
{{ trans('plugins/payment::payment.amount') }}: {{ $payment->amount / 100 }} {{ $payment->currency }}
{{ trans('plugins/payment::payment.email') }}: {{ $payment->email }}
{{ trans('plugins/payment::payment.phone') }}: {{ $payment->contact }}
@if ($payment->amount_refunded)
{{ trans('plugins/payment::payment.amount_refunded') }}:
{{ $payment->amount_refunded / 100 }} {{ $payment->currency }}
@endif
@if ($refunds = Arr::get($paymentModel->metadata, 'refunds', []))
@foreach ($refunds as $refund)
@include('plugins/razorpay::refund-detail')
@endforeach
@endif
@include('plugins/payment::partials.view-payment-source')
@endif