From 045849efcc0f8b8d7d28ca66815d5744cf4bf19c Mon Sep 17 00:00:00 2001 From: mauricius Date: Sun, 11 Apr 2021 18:21:06 +0200 Subject: [PATCH] Keep query string for subscribers pagination --- src/Http/Controllers/Subscribers/SubscribersController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Controllers/Subscribers/SubscribersController.php b/src/Http/Controllers/Subscribers/SubscribersController.php index 8432833c..b87ede05 100644 --- a/src/Http/Controllers/Subscribers/SubscribersController.php +++ b/src/Http/Controllers/Subscribers/SubscribersController.php @@ -46,7 +46,7 @@ public function index(): View ['tags'], 50, request()->all() - ); + )->withQueryString(); $tags = $this->tagRepo->pluck(Sendportal::currentWorkspaceId(), 'name', 'id'); return view('sendportal::subscribers.index', compact('subscribers', 'tags'));