소스 검색

NA bills - show description too in the table

Vijayakrishnan 3 년 전
부모
커밋
5bcdac2a53
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  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;