@if ($payment)

{{ trans('plugins/payment::payment.payment_id') }}: {{ $payment->id }}

{{ trans('plugins/payment::payment.amount') }}: {{ ($payment->amount / 100) }} {{ $payment->currency }}

{{ trans('plugins/payment::payment.email') }}: {{ $payment->email }}

{{ trans('plugins/payment::payment.phone') }}: {{ $payment->contact }}

{{ trans('core/base::tables.created_at') }}: {{ Carbon\Carbon::now()->parse($payment->created_at) }}


@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