From 9df84e235ca4048af82dd81eb2bdc94827211b08 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 26 Mar 2024 09:54:40 +0000 Subject: [PATCH] Check for config variable Signed-off-by: snipe --- resources/views/partials/bootstrap-table.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 28c414a436..a3d6b6df2d 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -58,7 +58,7 @@ maintainSelected: true, trimOnSearch: false, showSearchClearButton: true, - addrbar: true, // deeplink search phrases, sorting, etc + addrbar: {{ (config('session.bs_table_addrbar') == 'true') ? 'true' : 'false'}}, // deeplink search phrases, sorting, etc paginationFirstText: "{{ trans('general.first') }}", paginationLastText: "{{ trans('general.last') }}", paginationPreText: "{{ trans('general.previous') }}",