@extends('frontend.layouts.main')
@section('title')
{{ __('Bonuses') }}
@endsection
@section('content')
{{ __('Referral program') }}
{{ __('Refer your friends to our casino and get bonus credits.') }}
{{ __('Please copy the link below and share with your friends.') }}
{{ __('You will get the following bonuses for referred users.') }}
@if($referral_bonuses['referrer_sign_up_credits'])
-
{{ __('User signs up - :n credits', ['n' => $referral_bonuses['referrer_sign_up_credits']]) }}
@if(config('settings.bonuses.referral.referee_sign_up_credits'))
({{ __('referred user will also get :n bonus credits', ['n' => $referral_bonuses['referee_sign_up_credits']]) }})
@endif
@endif
@if($referral_bonuses['referrer_game_loss_pct'])
-
{{ __('User loses a game - :n% of net loss in credits', ['n' => $referral_bonuses['referrer_game_loss_pct']]) }}
@endif
@if($referral_bonuses['referrer_game_win_pct'])
-
{{ __('User wins a game - :n% of net win in credits', ['n' => $referral_bonuses['referrer_game_win_pct']]) }}
@endif
@if($referral_bonuses['referrer_raffle_ticket_pct'])
-
{{ __('User purchases a raffle ticket - :n% of ticket price in credits', ['n' => $referral_bonuses['referrer_raffle_ticket_pct']]) }}
@endif
@if($referral_bonuses['referrer_deposit_pct'])
-
{{ __('User completes a deposit - :n% of deposit amount in credits', ['n' => $referral_bonuses['referrer_deposit_pct']]) }}
@endif
{{ __('You referred :n users and earned :total credits so far.', ['n' => $referred_users_count, 'total' => $referral_total_bonus]) }}
{{ __('Other bonuses') }}
@if(config('settings.bonuses.game.loss_amount_pct') > 0)
-
{{ __('Get :pct% of the net loss back when you lose more than :amount credits in a single game.', [
'amount' => config('settings.bonuses.game.loss_amount_min'),
'pct' => config('settings.bonuses.game.loss_amount_pct'),
])
}}
@endif
@if(config('settings.bonuses.game.win_amount_pct') > 0)
-
{{ __('Get :pct% of the net win back when you win more than :amount credits in a single game.', [
'amount' => config('settings.bonuses.game.win_amount_min'),
'pct' => config('settings.bonuses.game.win_amount_pct'),
])
}}
@endif
@installed('payments')
@if(config('settings.bonuses.deposit.amount_pct') > 0)
-
{{ __('Get :pct% back when you deposit more than :amount credits at once.', [
'amount' => config('settings.bonuses.deposit.amount_min'),
'pct' => config('settings.bonuses.deposit.amount_pct'),
])
}}
@endif
@endinstalled
@endsection
@push('scripts')
@endpush