@extends('layouts.millage') @section('title', $title) @section('content')
Welcome, {{ Auth::user()->name }}!
@if (!empty($settings->welcome_message) and Auth::user()->created_at->diffInDays() <= 3)
@endif @if ($settings->enable_annoc == 'on' and !empty($settings->newupdate))
@endif

Account balance

{{ $settings->currency }}{{ number_format(Auth::user()->account_bal, 2, '.', ',') }}

@if ($mod['investment'])

Total Profit

{{ $settings->currency }}{{ number_format(Auth::user()->roi, 2, '.', ',') }}

@endif

Bonus

{{ $settings->currency }}{{ number_format(Auth::user()->bonus, 2, '.', ',') }}

@if ($mod['subscription'])

Trading Accounts

{{ $trading_accounts }}

@endif

Referral Bonus

{{ $settings->currency }}{{ number_format(Auth::user()->ref_bonus, 2, '.', ',') }}

Total Deposit

{{ $settings->currency }}{{ number_format($deposited, 2, '.', ',') }}

@if ($mod['investment'] || $mod['cryptoswap'])

Total Withdrawal

{{ $settings->currency }}{{ number_format($total_withdrawal, 2, '.', ',') }}

@endif
Fundamental & Technical Outlook
@if ($mod['investment'])
Active Plan(s)
@forelse ($plans as $plan)
{{ $plan->dplan->name }}
{{ $settings->currency }}{{ number_format($plan->amount) }}
@empty

You do not have an active investment plan at the moment.

Buy a plan
@endforelse
@endif
Recent transactions ({{ count($t_history) }})
@forelse ($t_history as $item) @empty @endforelse
Date Type Amount
{{ $item->created_at->toDayDateTimeString() }} {{ $item->type }} {{ $settings->currency }}{{ number_format($item->amount) }}
No record yet
{{-- end of recent transactions --}}
Refer Us & Earn

Use the below link to invite your friends.

@endsection