diff --git a/resources/views/admin/location/index.blade.php b/resources/views/admin/location/index.blade.php index ac084b5..ec90923 100644 --- a/resources/views/admin/location/index.blade.php +++ b/resources/views/admin/location/index.blade.php @@ -36,7 +36,7 @@ - {{ $locations->links() }} + {{ $locations->appends(request()->query())->links() }} @endif diff --git a/resources/views/admin/media/index.blade.php b/resources/views/admin/media/index.blade.php index c76f82c..adb1bf4 100644 --- a/resources/views/admin/media/index.blade.php +++ b/resources/views/admin/media/index.blade.php @@ -42,7 +42,7 @@ - {{ $media->links() }} + {{ $media->appends(request()->query())->links() }} @endif diff --git a/resources/views/admin/post/index.blade.php b/resources/views/admin/post/index.blade.php index 6625f41..e7f7579 100644 --- a/resources/views/admin/post/index.blade.php +++ b/resources/views/admin/post/index.blade.php @@ -40,7 +40,7 @@ - {{ $posts->links() }} + {{ $posts->appends(request()->query())->links() }} @endif diff --git a/resources/views/admin/user/index.blade.php b/resources/views/admin/user/index.blade.php index 4d09ed9..2d9b2f2 100644 --- a/resources/views/admin/user/index.blade.php +++ b/resources/views/admin/user/index.blade.php @@ -42,7 +42,7 @@ - {{ $users->links() }} + {{ $users->appends(request()->query())->links() }} @endif diff --git a/resources/views/admin/workshop/index.blade.php b/resources/views/admin/workshop/index.blade.php index 41b80e5..ecc37da 100644 --- a/resources/views/admin/workshop/index.blade.php +++ b/resources/views/admin/workshop/index.blade.php @@ -40,7 +40,7 @@ - {{ $workshops->links() }} + {{ $workshops->appends(request()->query())->links() }} @endif