{{-- Alerts Section --}} {{-- Welcome & Announcement Messages --}} @if (!empty($settings->welcome_message) && auth()->user()->created_at->diffInDays() <= 3)

{{ $settings->welcome_message }}

@endif @if ($settings->enable_annoucement && !empty($settings->annoucement))
{!! $settings->annoucement !!}
@endif {{-- Main Content Grid --}}
{{-- Left Column: Balance & Stats --}}
{{-- Account Overview Card --}}
{{-- Balance Section with Gradient Background --}}

{{ __('t.account_overview') }}

{{ __('t.hello') }} {{ auth()->user()->name }}! 👋

{{ __('t.available_balance') }}

{{ Number::currency(Auth::user()->account_bal, $settings->s_currency) }}

{{-- Stats Grid --}}
{{ __('t.total_profit') }}

{{ Number::currency(Auth::user()->roi, $settings->s_currency) }}

{{ __('t.bonus') }}

{{ Number::currency(Auth::user()->bonus, $settings->s_currency) }}

{{ __('t.referral_bonus') }}

{{ Number::currency(Auth::user()->ref_bonus, $settings->s_currency) }}

{{ __('t.withdrawals') }}

{{ Number::currency(auth()->user()->totalWithdrawals(), $settings->s_currency) }}

{{-- CTA Button --}}
{{-- Active Plans Section --}} @if ($mod['investment'] == 'true')

{{ __('t.active_plans') }}

{{ __('t.view_all') }}
@forelse ($plans->slice(0, 2) as $plan)

{{ $plan->plan->name }}

{{ Number::currency($plan->amount, $settings->s_currency) }}

@empty

{{ __('t.no_active_plans') }}

Start investing today

{{ __('t.t') }}
@endforelse
@endif
{{-- Right Column: Quick Actions & Transactions --}}
{{-- Quick Actions Grid --}}

{{ __('t.quick_action') }}

{{-- Referral Link Section --}}
{{-- Recent Transactions --}}

{{ __('t.recent_transactions') }}

{{ __('t.view_all') }}
@forelse ($history->slice(0, 4) as $item) @empty @endforelse
{{ __('t.amount') }} {{ __('t.type') }}
{{ Number::currency($item->amount, $settings->s_currency) }} {{ $item->type }}

{{ __('t.no_transactions') }}

Your transaction history will appear here

{{-- Market Overview Widget --}}

{{ __('t.market_overview') }}