@if ($payment)
{{ trans('plugins/payment::payment.payment_id') }}: {{ $payment->id }}
{{ trans('plugins/payment::payment.payer_name') }}: {{ $payment->billing_details->name }}
@if ($payment->source){{ trans('plugins/payment::payment.card') }}: {{ $payment->source->brand }} - **** **** **** {{ $payment->source->last4 }} - {{ $payment->source->exp_month }}/{{ $payment->source->exp_year }}
@endif @if ($payment->billing_details->country){{ trans('plugins/payment::payment.country') }}: {{ $payment->billing_details->country }}
@endif @if (!empty($payment->billing_details->address_line1)){{ trans('plugins/payment::payment.address') }}: {{ $payment->billing_details->address_line1 }}
@endif{{ trans('plugins/payment::payment.refunds.id') }}: {{ $item->id }}
@php $multiplier = \Botble\Stripe\Supports\StripeHelper::getStripeCurrencyMultiplier($item->currency); if ($multiplier > 1) { $item->amount = round($item->amount / $multiplier, 2); } @endphp{{ trans('plugins/payment::payment.amount') }}: {{ $item->amount }} {{ strtoupper($item->currency) }}
{{ trans('plugins/payment::payment.refunds.status') }}: {{ strtoupper($item->status) }}
{{ trans('plugins/payment::payment.refunds.create_time') }}: {{ Carbon\Carbon::now()->parse($item->created) }}