{{-- @vite(['resources/css/app.css', 'resources/js/app.js'])--}}
@include('flash')
{{ $greetings }}!
{{ ucwords(auth()->user()->name) }}
Balance
{{ ucwords(auth()->user()->acct_currency) }}{{ number_format(auth()->user()->balance,2) }}
Deposit
Withdraw
Referral
Support
Deposit
{{ ucwords(auth()->user()->acct_currency) }}{{ number_format(auth()->user()->deposits()->where('status', 'completed')->sum('amount'), 2) }}
ROI
{{ ucwords(auth()->user()->acct_currency) }}{{ number_format(auth()->user()->investments()->where('status', 'completed')->sum('profit'), 2) }}
Active Investment
{{ ucwords(auth()->user()->acct_currency) }}{{ number_format(auth()->user()->investments()->where('status', 'active')->sum('amount'), 2) }}
Withdrawn
{{ ucwords(auth()->user()->acct_currency) }}{{ number_format(auth()->user()->withdrawals()->where('status', 'completed')->sum('amount'), 2) }}
@stack('content')
@include('layouts.guest.footer')