Explorar el Código

NA bills - show description too in the table

Vijayakrishnan hace 3 años
padre
commit
5bcdac2a53
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      resources/views/app/generic-bills/inline.blade.php

+ 5 - 1
resources/views/app/generic-bills/inline.blade.php

@@ -73,7 +73,11 @@ $genericBills = genericBills($pro, @$patient, @$entityType, @$entityUid);
                                 @include('app.generic-bills.context')
                             </td>
                         @endif
-                        <td>{{$bill->code}}</td>
+                        <td>{{$bill->code}}
+                            @if($bill->generic_description)
+                                <div class="text-sm text-secondary font-italic">{{$bill->generic_description}}</div>
+                            @endif
+                        </td>
                         <td class="">
                             <?php
                             $totalSeconds = $bill->number_of_units * 3600;