{{ session('message') }}
@endif
| Amount Invested | Plan | Start Date | End Date | Profit | Status | Wallet |
|---|---|---|---|---|---|---|
| ${{number_format($investment->amount, 2, '.', ',')}} | {{$investment->plan->name}} | {{$investment->created_at->format('d/m/Y')}} | {{date('d/m/Y', strtotime("+ ".$investment->contract_duration))}} | ${{number_format($investment->profit(), 2, '.', ',')}} | @switch($investment->status) @case(0) Pending @break @case(1) Approved @break @case(2) Completed @break @case(3) Withdrawn @break @default Declined @break @endswitch | {{$investment->wallet_address->address}} |