Selaa lähdekoodia

Pro financials - show debit bill description

Vijayakrishnan 2 vuotta sitten
vanhempi
commit
a326b98abb
1 muutettua tiedostoa jossa 10 lisäystä ja 4 poistoa
  1. 10 4
      resources/views/app/practice-management/pro-financials.blade.php

+ 10 - 4
resources/views/app/practice-management/pro-financials.blade.php

@@ -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>