@extends('layouts.investor') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Promissory Notes
@forelse($promissoryInvestment as $fund) @empty

No payday funds available yet

@endforelse
Amount Approval Status Payment Ref. Payment Type Created Date Action
{{$loop->index + 1}} {{number_format($fund->amount, 2)}} @if($fund->approval_status == 1) Approved @endif @if($fund->approval_status != 0) Pending @endif {{$fund->reference}} {{$fund->investment_type}} {{$fund->created_at}} @if($fund->verification_status == 'active') Approved @else
@endif
@endsection @section('page-js') @endsection