@extends('layouts.staff-new') @section('content')
Loans available for purchase
@if(count($loans)) @foreach($loans as $loan) @php($loan->potential_gain = $loan->potential_gain)
  ₦ {{number_format($loan->sale_amount, 2)}}
Current Value: ₦ {{ number_format( $loan->currentValue , 2) }}

Gain: ₦ {{ $loan->potentialGain }}

Loan Due Date: {{$loan?->loanRequest?->loan?->due_date}}

@endforeach
@else
There are no loans available for purchase
@endif
@endsection @section('page-js') @endsection