{{ __('emails.cancellations.greeting', ['name' => $requester->name ?? __('emails.cancellations.generic_user')]) }}

{{ __('emails.cancellations.refund.intro', ['app' => config('app.name')]) }}

{{ __('emails.cancellations.refund.management') }}

{{ __('emails.cancellations.refund.management_note') }}

{{ __('emails.cancellations.refund.observations_title') }}

{{ __('emails.cancellations.refund.observations') }}

{{ __('emails.cancellations.refund.details_title') }}

{{ __('emails.cancellations.refund.labels.concept') }} {{ $payment?->type === 'access' ? __('emails.cancellations.refund.concept.access') : ($payment?->type ? __('emails.cancellations.refund.concept.other', ['type' => ucfirst($payment->type)]) : __('emails.cancellations.not_available')) }}
{{ __('emails.cancellations.refund.labels.article') }} {{ $articleTitle ?? '-' }}
{{ __('emails.cancellations.refund.labels.original_payment_date') }} {{ $payment?->paid_at ? $payment->paid_at->format('d/m/Y') : '-' }}
{{ __('emails.cancellations.refund.labels.amount_refunded') }} {{ $requestedRefundFormatted ?? ($requestedRefund ? number_format($requestedRefund, 2, '.', ' ') : '-') }}

{{ __('emails.cancellations.refund.help') }}

{{ __('emails.cancellations.refund.thanks', ['app' => config('app.name')]) }}