@push('title', __('Welcome to the best hotel on the web!'))

Hey {{ Auth::user()->username }}!

{{ Auth::user()->motto }}

{{ auth()->user()->credits }} {{ auth()->user()->currency('duckets') }} {{ auth()->user()->currency('diamonds') }}
{{-- Articles --}}
@foreach($articles as $article) @endforeach
{{ __('Online Friends') }} {{ __('Online Friends') }}
@foreach ($onlineFriends as $friend)
@endforeach
{{ sprintf(__('User Referrals (%s/%s)'), auth()->user()->referrals->referrals_total ?? 0, setting('referrals_needed')) }} {{ __('Referral new users and be rewarded by in-game goods') }}
{{ __('Here at :hotel we have added a referral system, allowing you to obtain a bonus for every :needed users that registers through your referral link will allow you to claim a reward of :amount diamonds!', ['hotel' => setting('hotel_name'), 'needed' => setting('referrals_needed'), 'amount' => setting('referral_reward_amount')]) }}
{{ __('Boosting referrals by making own accounts will lead to removal of all progress, currency, inventory and a potential ban') }}
{{ __('Copy code') }}
@if (auth()->user()->referrals?->referrals_total >= (int) setting('referrals_needed')) {{ __('Claim your referrals reward!') }} @else @endif
@push('javascript') @endpush