diff --git a/app/Abstracts/View/Components/Contacts/Index.php b/app/Abstracts/View/Components/Contacts/Index.php index 0fe2b5ef0..bc55a201b 100644 --- a/app/Abstracts/View/Components/Contacts/Index.php +++ b/app/Abstracts/View/Components/Contacts/Index.php @@ -282,7 +282,7 @@ abstract class Index extends Component foreach ($totals as $key => $total) { $items[] = [ 'title' => ($key == 'overdue') ? trans('general.overdue') : trans('documents.statuses.' . $key), - 'href' => route($route, ['search' => 'status:' . $key]), + //'href' => route($route, ['search' => 'status:' . $key]), 'amount' => money($total, setting('default.currency'), true)->formatForHumans(), 'tooltip' => money($total, setting('default.currency'), true)->format(), ]; diff --git a/app/Abstracts/View/Components/Documents/Index.php b/app/Abstracts/View/Components/Documents/Index.php index 0fc38f681..e47840939 100644 --- a/app/Abstracts/View/Components/Documents/Index.php +++ b/app/Abstracts/View/Components/Documents/Index.php @@ -397,7 +397,7 @@ abstract class Index extends Component $items[] = [ 'title' => $title, - 'href' => $href, + //'href' => $href, 'amount' => $amount, 'tooltip' => $tooltip, ]; diff --git a/resources/views/components/index/summary.blade.php b/resources/views/components/index/summary.blade.php index 35e53f31e..961ae41cf 100644 --- a/resources/views/components/index/summary.blade.php +++ b/resources/views/components/index/summary.blade.php @@ -6,7 +6,9 @@