From 8c92cdd4098b85e2b572f88846f9da697715ab43 Mon Sep 17 00:00:00 2001 From: Joshua Franks Date: Fri, 30 Apr 2021 10:45:51 +0100 Subject: [PATCH] Add pagination to the tags index view Although we were paginating results on the back-end, we did not add the pagination partial to the UI. --- resources/views/tags/index.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/tags/index.blade.php b/resources/views/tags/index.blade.php index 2bbd8fe0..15e1fc0d 100644 --- a/resources/views/tags/index.blade.php +++ b/resources/views/tags/index.blade.php @@ -50,4 +50,7 @@ + + @include('sendportal::layouts.partials.pagination', ['records' => $tags]) + @endsection