Sports
Support
@if (Auth::check() && Auth::user()->role === 'admin')
@elseif (Auth::check() && Auth::user()->role === 'user')
Wallet
Money {{ App\Models\Wallet::where('user_id', Auth::user()->id)->first()->main_balance ?? 0 }}
|
Bonus {{ App\Models\Wallet::where('user_id', Auth::user()->id)->first()->bonus_balance ?? 0 }}
Logout
@else
Login
Register
@endif