Vijayakrishnan пре 4 година
родитељ
комит
7cb132e344

+ 1 - 1
app/Helpers/helpers.php

@@ -77,7 +77,7 @@ if(!function_exists('friendlier_date_time')) {
         if(!$value || empty($value)) return $default;
         try {
             $result = strtotime($value);
-            $result = date("j M" . ($includeTime ? ", h:i a" : ""), $result);
+            $result = date("j M, y" . ($includeTime ? ", h:i a" : ""), $result);
             return $result;
         }
         catch (Exception $e) {

+ 3 - 0
resources/views/app/patient/note/_create-bill.blade.php

@@ -88,6 +88,9 @@
         </div>
     </div>
 @endif
+@if($note->is_bill_closed)
+    <b class="ml-2 text-info">[BILLING CLOSED]</b>
+@endif
 @if($pro->pro_type === 'ADMIN')
     @if(!$note->is_bill_closed)
         <span class="mx-2 text-secondary">|</span>

+ 3 - 3
resources/views/layouts/patient.blade.php

@@ -161,9 +161,9 @@
                             <a class="nav-link {{ strpos($routeName, 'patients.view.pros') === 0 ? 'active' : '' }}"
                                href="{{ route('patients.view.pros', ['patient' => $patient]) }}">Pros</a>
                         </li>
-                        <li class="nav-item">
-                            <a class="nav-link" href="/patients/view/{{ $patient->uid }}/intake">Intake</a>
-                        </li>
+{{--                        <li class="nav-item">--}}
+{{--                            <a class="nav-link" href="/patients/view/{{ $patient->uid }}/intake">Intake</a>--}}
+{{--                        </li>--}}
                         @if($performer->pro->pro_type == 'ADMIN')
                         <li class="nav-item">
                             <a class="nav-link {{ strpos($routeName, 'patients.view.mcp-requests') === 0 ? 'active' : '' }}"