Latest Investments


@foreach ($investments as $investment) @if ($investment->user) @endif @endforeach
User Name Amount Plan Status
{{$investment->user->name}} ${{number_format($investment->amount, 2, '.', ',')}} {{$investment->plan->name}} @switch($investment->status) @case('approved') Approved @break @default @break @endswitch

Latest Withdrawals


@foreach ($withdrawals as $withdrawal) @if (isset($withdrawal->user)) @endif @endforeach
User Name Amount Payment Method Status
{{$withdrawal->user->name}} ${{number_format($withdrawal->amount, 2, '.', ',')}} {{$withdrawal->wallet_name}} @if($withdrawal->status == 'approved') Approved @endif