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

No active promissory note available yet

@endforelse
Cert. Number Amount Current Value Status Maturity Date Start Date Certificate
{{$loop->index + 1}} {{$note->reference}} {{number_format($note->principal, 2)}} {{$note->current_value}} @if($note->status == 1) Active @endif @if($note->status == 2) Active @endif {{$note->maturity_date}} {{$note->start_date}} View
@endsection @section('page-js') @endsection