|
@@ -26,7 +26,7 @@
|
|
|
width: 100% !important;
|
|
|
}
|
|
|
</style>
|
|
|
-<form id="notes-filters" method="GET" action="{{ route('practice-management.notes') }}" class="filter-container" v-cloak>
|
|
|
+<form id="notes-filters" method="GET" action="{{ route('practice-management.allNotes') }}" class="filter-container" v-cloak>
|
|
|
<!-- DATE -->
|
|
|
<div>
|
|
|
<div class="form-group">
|
|
@@ -97,7 +97,7 @@
|
|
|
<label> </label>
|
|
|
<div class="d-flex">
|
|
|
<button type="submit" v-on:click.prevent="doSubmit()" class="btn btn-primary btn-sm mr-2"><i class="fas fa-filter"></i> Filter</button>
|
|
|
- <a href="#" v-on:click.prevent="fastLoad('{{route('practice-management.notes')}}')" class="btn btn-link btn-sm text-danger">Clear Filters</a>
|
|
|
+ <a href="#" v-on:click.prevent="fastLoad('{{route('practice-management.allNotes')}}')" class="btn btn-link btn-sm text-danger">Clear Filters</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -131,7 +131,7 @@ for ($i = 0; $i < count($allFilterKeys); $i++) {
|
|
|
},
|
|
|
methods: {
|
|
|
doSubmit: function() {
|
|
|
- fastLoad('{{ route("practice-management.notes") }}?' + $('#notes-filters').serialize());
|
|
|
+ fastLoad('{{ route("practice-management.allNotes") }}?' + $('#notes-filters').serialize());
|
|
|
return false;
|
|
|
},
|
|
|
init: function() {
|