@php if(Auth::check()){ $refund = false; if( auth()->user()->shop && auth()->user()->shop->progress_active ){ $refund = \VanguardLTE\Progress::where(['shop_id' => auth()->user()->shop_id, 'rating' => auth()->user()->rating])->first(); } $currency = auth()->user()->present()->shop ? auth()->user()->present()->shop->currency : ''; } else{ $currency = ''; $refund = false; } $rules = \VanguardLTE\Rule::get(); @endphp
{{ number_format(auth()->user()->balance, 2,".","") }} {{ $currency }}
@if( auth()->user()->shop && auth()->user()->shop->progress_active ) @else @endif
{{ auth()->user()->username }}
  • @if( auth() ->user()->tournaments > 0 || auth() ->user()->happyhours > 0 || auth() ->user()->refunds > 0 || auth() ->user()->progress > 0 || auth() ->user()->daily_entries > 0 || auth() ->user()->invite > 0 || auth() ->user()->welcomebonus > 0 || auth() ->user()->smsbonus > 0 || auth() ->user()->wheelfortune > 0 ) @if(auth() ->user()->tournaments > 0)

    Tournaments = {{ number_format(auth() ->user()->tournaments, 2,".","") }}

    @endif @if(auth() ->user()->happyhours > 0)

    Happy Hours = {{ number_format(auth() ->user()->happyhours, 2,".","") }}

    @endif @if(auth() ->user()->refunds > 0)

    Refund = {{ number_format(auth() ->user()->refunds, 2,".","") }}

    @endif @if(auth() ->user()->progress > 0)

    Progress Bonus = {{ number_format(auth() ->user()->progress, 2,".","") }}

    @endif @if(auth() ->user()->daily_entries > 0)

    Daily Entries = {{ number_format(auth() ->user()->daily_entries, 2,".","") }}

    @endif @if(auth() ->user()->invite > 0)

    Invite Bonus = {{ number_format(auth() ->user()->invite, 2,".","") }}

    @endif @if(auth() ->user()->welcomebonus > 0)

    Welcome Bonus = {{ number_format(auth() ->user()->welcomebonus, 2,".","") }}

    @endif @if(auth() ->user()->smsbonus > 0)

    SMS Bonus = {{ number_format(auth() ->user()->smsbonus, 2,".","") }}

    @endif @if(auth() ->user()->wheelfortune > 0)

    Wheel Fortune = {{ number_format(auth() ->user()->wheelfortune, 2,".","") }}

    @endif
    @else @endif {{ number_format( (auth() ->user()->tournaments + auth() ->user()->happyhours + auth()->user()->refunds + auth() ->user()->progress + auth() ->user()->daily_entries + auth() ->user()->invite + auth() ->user()->welcomebonus + auth() ->user()->smsbonus + auth() ->user()->wheelfortune), 2,".","") }} {{ $currency }}
  • @if( auth() ->user()->count_tournaments > 0 || auth() ->user()->count_happyhours > 0 || auth() ->user()->count_refunds > 0 || auth() ->user()->count_progress > 0 || auth() ->user()->count_daily_entries > 0 || auth() ->user()->count_invite > 0 || auth() ->user()->count_welcomebonus > 0 || auth() ->user()->count_smsbonus > 0 || auth() ->user()->count_wheelfortune > 0 ) @if(auth() ->user()->count_tournaments > 0)

    Tournaments = {{ number_format(auth() ->user()->count_tournaments, 2,".","") }}

    @endif @if(auth() ->user()->count_happyhours > 0)

    Happy Hours = {{ number_format(auth() ->user()->count_happyhours, 2,".","") }}

    @endif @if(auth() ->user()->count_refunds > 0)

    Refund = {{ number_format(auth() ->user()->count_refunds, 2,".","") }}

    @endif @if(auth() ->user()->count_progress > 0)

    Progress Bonus = {{ number_format(auth() ->user()->count_progress, 2,".","") }}

    @endif @if(auth() ->user()->count_daily_entries > 0)

    Daily Entries = {{ number_format(auth() ->user()->count_daily_entries, 2,".","") }}

    @endif @if(auth() ->user()->count_invite > 0)

    Invite Sum или Invite Sum Ref = {{ number_format(auth() ->user()->count_invite, 2,".","") }}

    @endif @if(auth() ->user()->count_welcomebonus > 0)

    Welcome Bonus = {{ number_format(auth() ->user()->count_welcomebonus, 2,".","") }}

    @endif @if(auth() ->user()->count_smsbonus > 0)

    SMS Bonus = {{ number_format(auth() ->user()->count_smsbonus, 2,".","") }}

    @endif @if(auth() ->user()->count_wheelfortune > 0)

    Wheel Fortune = {{ number_format(auth() ->user()->count_wheelfortune, 2,".","") }}

    @endif
    @else @endif {{ number_format( (auth() ->user()->count_tournaments + auth() ->user()->count_happyhours + auth()->user()->count_refunds + auth() ->user()->count_progress + auth() ->user()->count_daily_entries + auth() ->user()->count_invite + auth() ->user()->count_welcomebonus + auth() ->user()->count_smsbonus + auth() ->user()->count_wheelfortune), 2,".","") }} {{ $currency }}
  • @if ( $refund && auth()->user()->present()->refunds > 0 && auth()->user()->present()->balance <= $refund->min_balance )

    Refund

    {{ number_format(auth()->user()->refunds, 2,".","") }} {{ $currency }} @else {{ number_format(auth()->user()->refunds, 2,".","") }} {{ $currency }} @endif
@if( settings('contact_form_active') || \VanguardLTE\Faq::count() > 0 || auth()->user()->shop->getBonusesList() || count($rules) && auth()->user()->shop->hasActiveRules() )
    @if( settings('contact_form_active') )
  • Contact Form
  • @endif @if( \VanguardLTE\Faq::count() > 0 )
  • FAQ
  • @endif @if( auth()->user()->shop->getBonusesList() )
  • Bonuses
  • @endif @if( count($rules) && auth()->user()->shop->hasActiveRules()) @foreach($rules AS $rule) @if(auth()->user()->shop->{'rules_'.$rule->href})
  • {{ $rule->title }}
  • @endif @endforeach @endif
@endif