@extends('admin.layouts.layouts') @section('title', 'Details | Investment Installment Entry') @section('content')
Records not found!
@else| Sr. | Investment Name | Installment Amount | Plus/Minus | Extra Amount | Final Amount | Paid Date |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $investmentEntryItem->investment->name ?? '-' }} | {{ $investmentEntryItem->installment_amount ?? 0 }} | {{ $investmentEntryItem->plus_minus ?? '-' }} | {{ $investmentEntryItem->extra_amount ?? 0 }} | {{ $investmentEntryItem->final_amount ?? 0 }} | {{ isset($investmentEntryItem->paid_date) ? date('d-m-Y', strtotime($investmentEntryItem->paid_date)) : '-' }} |