|
@@ -38,6 +38,24 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
<a class="nav-link {{ strpos($routeName, 'patients.view.calendar') === 0 ? 'active' : '' }}" href="{{ route('patients.view.calendar', ['patient' => $patient]) }}">Calendar</a>
|
|
|
@endif
|
|
|
</li>
|
|
|
+
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
+ <li class="nav-item">
|
|
|
+ <a class="nav-link" href="{{ route('patients.view.invoicing-companies', ['patient' => $patient]) }}" title="Deprecated">Invoicing</a>
|
|
|
+ <ul class="m-0 p-0 nav-child-list">
|
|
|
+ <li class="nav-item">
|
|
|
+ <a class="nav-link {{ strpos($routeName, 'patients.view.invoicing-companies') === 0 ? 'active' : '' }}" href="{{ route('patients.view.invoicing-companies', ['patient' => $patient]) }}">Companies</a>
|
|
|
+ </li>
|
|
|
+ <li class="nav-item">
|
|
|
+ <a class="nav-link {{ strpos($routeName, 'patients.view.invoicing-invoices') === 0 ? 'active' : '' }}" href="{{ route('patients.view.invoicing-invoices', ['patient' => $patient]) }}">Invoices</a>
|
|
|
+ </li>
|
|
|
+ <li class="nav-item">
|
|
|
+ <a class="nav-link {{ strpos($routeName, 'patients.view.invoicing-transactions') === 0 ? 'active' : '' }}" href="{{ route('patients.view.invoicing-transactions', ['patient' => $patient]) }}">Transactions</a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </li>
|
|
|
+ @endif
|
|
|
+
|
|
|
<li class="nav-item">
|
|
|
<a class="nav-link {{ strpos($routeName, 'patients.view.appointments') === 0 ? 'active' : '' }}" href="{{ route('patients.view.appointments', ['patient' => $patient, 'forPro' => 'all', 'status' => 'all']) }}">Appointments</a>
|
|
|
</li>
|