{{ __('donations.hipopay.title') }}

@if (isset($success) || ($success = session('success')))
{{ $success }}
@endif @if (isset($error) || ($error = session('error')))
{{ $error }}
@endif @if (isset($message) || ($message = session('message')))
{{ $message }}
@endif @if ($invoices->count() > 0)

{{ __('donations.paypal.pending') }}

    @foreach ($invoices as $data)
  • {{ $data->name }}[{{ $data->created_at->diffForHumans() }}]
  • @endforeach
@endif
@forelse($hipopay as $data)
{{ $data->gold }} Gold
{{ __('donations.paypal.pay-text', [ 'price' => $data->price, 'currency' => $method->currency, 'amount' => $data->formatted_gold, 'silk_name' => 'Gold', ]) }}

{{ $data->description }}

@if ($bonus = (int) config('siteSettings.gold_donation_bonus', 0))

Hurry up there is {{ $bonus }}% bonus right now you will get {{ \App\Helpers\Numbers::format(round((int) $data->gold + ((int) $data->gold * $bonus) / 100)) }} Gold

@endif {{ __('donations.paypal.submit') }}
@empty {{ __('donations.paypal.empty') }} @endforelse