Просмотр исходного кода

Note > bill > show cancellation memo

Vijayakrishnan 4 лет назад
Родитель
Сommit
f8d887a562
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      resources/views/app/patient/note/dashboard.blade.php

+ 4 - 1
resources/views/app/patient/note/dashboard.blade.php

@@ -1030,6 +1030,9 @@
                                     <td>  <!-- cancellation -->
                                         @if($bill->is_cancelled)
                                             <div class="text-warning-mellow font-weight-bold">Cancelled</div>
+                                            @if($bill->cancellation_memo)
+                                                <div class="text-dark text-sm font-italic my-1">{{$bill->cancellation_memo}}</div>
+                                            @endif
                                             @if($bill->is_cancelled_by_administrator)
                                                 <div class="text-secondary text-sm">(by Administrator)</div>
                                             @endif
@@ -1039,7 +1042,7 @@
                                                     <input type="hidden" name="uid" value="{{$bill->uid}}">
                                                     <p>Update Cancellation Memo</p>
                                                     <div class="mb-0">
-                                                        <input type="text" class="text form-control form-control-sm" name="updateCancellationMemo" value="{{$bill->cancellation_memo}}" placeholder=""><br>
+                                                        <input type="text" class="text form-control form-control-sm" name="cancellationMemo" value="{{$bill->cancellation_memo}}" placeholder=""><br>
                                                         <button class="btn btn-success btn-sm" submit>Submit</button>
                                                         <button class="btn btn-default border btn-sm" cancel>Cancel</button>
                                                     </div>