@php($title = __('رسید پرداخت')) @php($user = $payment->user) @extends('layouts.user') @section('content') @if(auth()->check() && auth()->user()->id == $payment->user->id) {{ __('تنظیمات حمایت مالی') }} @endif

@if($success) {{ $isEn ? __('Success transaction 🎉') : __('پرداخت شد! 🎉') }} @else {{ $isEn ? __('Payment failed! ☹️️') : __('پرداخت نشد! ☹️') }} @endif

@if($success)

{{ $isEn ? $payment->user->donation['thank_you_message_en'] : $payment->user->donation['thank_you_message'] }}

@if(isset($payment->payment_info['transId']))

{{ $isEn ? __('Transaction ID') : __('شماره تراکنش') }}: {{ $payment->payment_info['transId'] }}

@endif @else @if(isset($error))

{{ $error }}

@else

{{ $isEn ? __('Something went wrong!') : __('خطایی هنگام پرداخت رخ داده') }}

@endif @if(isset($retry) && $retry)

{{ $isEn ? __('Do you want to retry?') : __('مایلید دوباره تلاش کنید؟') }}

{{ $isEn ? __('Go to the payment page') : __('انتقال به صفحه پرداخت') }} @endif @endif
@endsection