From 3a5d3016c7288fc999192bc3cd3d471af834e6a1 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 6 Feb 2018 18:12:43 +0100 Subject: [PATCH] Refer to correct bill route --- resources/assets/js/components/bills/Index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/components/bills/Index.vue b/resources/assets/js/components/bills/Index.vue index 16339a56a2..fd09b9396d 100644 --- a/resources/assets/js/components/bills/Index.vue +++ b/resources/assets/js/components/bills/Index.vue @@ -121,7 +121,7 @@ formatAmount: Vue.filter('formatAmount'), trans: Vue.filter('trans'), fetchBillList() { - axios.get('api/v1/bills', {params: {start: window.sessionStart, end: window.sessionEnd}}).then((res) => { + axios.get('api/v1/bill', {params: {start: window.sessionStart, end: window.sessionEnd}}).then((res) => { this.list = res.data.data; }); },