@extends('layouts.investor') @section('page-css') @endsection @section('content')

Investments on sale

@if(count($funds)) @foreach($funds as $fund) @php $request = $fund->loanRequest; @endphp
{{strtoupper($fund->reference)}}

₦ {{ number_format($fund->sale_amount, 2) }}

CURRENT VALUE: ₦ {{ number_format($fund->currentValue, 2) }}

Listed by {{$fund->investor->reference}} with a remainder of {{ $fund->timeLeft }} {{str_plural('month', $fund->timeLeft)}}

Monthly Return

{{number_format($request->monthlyPayment($request->amount),2)}}

@endforeach
{{$funds->links('layouts.pagination.default')}}
@else

No items available

@endif
@endsection