|
@@ -44,7 +44,7 @@
|
|
|
<tr>
|
|
|
<th>Pro</th>
|
|
|
<th>Balance Owed</th>
|
|
|
- <th class="w-50">Recent Debits</th>
|
|
|
+ <th class="">Recent Debits</th>
|
|
|
<th class="w-50">Debit Bills</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -115,15 +115,21 @@
|
|
|
<table class="table table-sm table-striped">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th>Bill Amount</th>
|
|
|
+ <th>Date</th>
|
|
|
+ <th>Amount</th>
|
|
|
+ <th>Details</th>
|
|
|
<th>Debited?</th>
|
|
|
- <th>Paid Amount</th>
|
|
|
- <th>Is Verified</th>
|
|
|
+ <th>Paid?</th>
|
|
|
+ <th>Verified?</th>
|
|
|
<th></th>
|
|
|
</tr>
|
|
|
@foreach($row->debitBills as $debitBill)
|
|
|
<tr class="{{$debitBill->has_debit_pro_been_debited ? 'debited-row d-none' : ''}}">
|
|
|
+ <td>{{friendly_date($debitBill->effective_date)}}</td>
|
|
|
<td>${{friendly_money($debitBill->debit_pro_expected_amount)}}</td>
|
|
|
+ <td>
|
|
|
+ {{$debitBill->debit_description ?: ''}}
|
|
|
+ </td>
|
|
|
<td>{{$debitBill->has_debit_pro_been_debited?'Yes':'No'}}</td>
|
|
|
<td>{{$debitBill->debit_pro_expected_amount?'Yes':'No'}}</td>
|
|
|
<td>{{$debitBill->is_verified?'Yes':'No'}}</td>
|