@php $page = 'invests' @endphp @extends('includes.layout') @section('content')

Portfolio History

Balance

${{ number_format($user->balance, 2) }}

Make Invest
@forelse ($orders as $item)
Upcoming Payment:

@if ($item->invest_status == 'completed') {{ Str::ucfirst($item->invest_status) }} @else 0d : 0h : 0m : 0s @endif


Plan:

{{ optional($item->plan)->name }} PLAN


Plan Duration:

{{ optional($item->plan)->duration }} Day(s)


User:

{{ $item->user->name }}


Amount:

${{ number_format($item->amount, 2) }}


Interest:

${{ number_format($item->interest, 2) }}


Number Of Days:

{{ $item->day_counter }}


Payment Method :

Wallet Balance


Payment Date:

{{ $item->created_at->diffForHumans() }}


Action:

View Earnings

@empty

No Data Available at this Moment

@endforelse
{{ $orders->render("pagination::bootstrap-4") }}
@endsection @push('scripts') @endpush