@extends('layouts.staff-new') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@component('components.promissory-note-status', ['note'=> $promissoryNote]) @endcomponent


₦ {{number_format($promissoryNote->principal, 2)}}

Principal Amount

₦ {{number_format($promissoryNote->maturity_value, 2)}}

Maturity Value

{{$promissoryNote->monthsLeft}} payment(s) left

₦ {{number_format($promissoryNote->current_value, 2)}}

Current Value

₦ {{number_format($promissoryNote->interest, 2)}}

Expected Profit

₦ {{number_format($promissoryNote->payable_value, 2)}}

Payable Value

₦ {{number_format($promissoryNote->tax_paid, 2)}}

Tax Paid

{{date('d M Y', strtotime($promissoryNote->maturity_date))}}

Expires

{{strtoupper($promissoryNote->interest_payment_cycle)}}

Setup Method



View Certificate

Promissory Transaction Log

@forelse($promissoryNote->transactions as $transaction) @empty

No transaction on this promisorry note

@endforelse
Amount Description Direction Date
{{$loop->index + 1}} {{$transaction->amount}} {{$transaction->description}} {{$transaction->direction}} {{$transaction->date}}
@endsection @section('page-js') @endsection