@if (session()->has('message'))
{{ session('message') }}
@endif

Daily Profit History





User Email
@error('user_id') {{ $message }} @enderror
{!! $text_status !!}
@foreach ($wallets->sortDesc() as $wallet) @endforeach
Earned Amount Actions Accrued Time Source ref Capital Invested Status
{{number_format($wallet->amount, 2, '.', ',')}} {{$wallet->created_at->diffForHumans()}} @if ($wallet->source == 1) Investment @else Sales @endif {{$wallet->ref}} {{number_format($wallet->investment->amount, 2, '.', ',')}} @if ($wallet->status == 0) Pending @elseif($wallet->status == 1) Approved @else Declined @endif

Weekly Profit History





{!! $week_text_status !!}
@foreach ($week_wallets->sortDesc() as $wallet) @endforeach
Earned Amount Actions Accrued Time Capital Invested Status
{{number_format($wallet->amount, 2, '.', ',')}} {{$wallet->created_at->diffForHumans()}} {{number_format($wallet->investment->amount, 2, '.', ',')}} @if ($wallet->status == 0) Withdrawn @elseif($wallet->status == 1) Approved @else Unknown @endif