From e4238bfda6c50f3bf5717cbe2476658c543a910c Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 13 May 2025 11:31:38 +0200 Subject: [PATCH] Remove trashed customers and suppliers from overview. --- resources/views/customer/index.blade.php | 2 +- resources/views/supplier/index.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/customer/index.blade.php b/resources/views/customer/index.blade.php index 561909a..e6c472e 100644 --- a/resources/views/customer/index.blade.php +++ b/resources/views/customer/index.blade.php @@ -113,7 +113,7 @@ init() { let vm = this; - axios.get('/customer-with-trashed') + axios.get('/customer') .then(function (response) { vm.customers = response.data; }) diff --git a/resources/views/supplier/index.blade.php b/resources/views/supplier/index.blade.php index ef86718..dadbe25 100644 --- a/resources/views/supplier/index.blade.php +++ b/resources/views/supplier/index.blade.php @@ -119,7 +119,7 @@ init() { let vm = this; - axios.get('/supplier-with-trashed') + axios.get('/supplier') .then(function (response) { vm.suppliers = response.data; })