@extends('layouts.investor') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Promissory Notes
@forelse($promissoryNotes->sortByDesc('id') 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)}} {{number_format($note->current_value, 2)}} @component('components.promissory-note-status', ['note'=> $note]) @endcomponent {{$note->maturity_date}} {{$note->start_date}} View
@endsection @section('page-js') @endsection