From 5a61789a9f8f926266c89f3b0c0f44580f359223 Mon Sep 17 00:00:00 2001 From: Sergey Panarin Date: Sun, 18 Aug 2024 15:28:47 +0200 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/employer_main/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/admin/employer_main/index.blade.php b/resources/views/admin/employer_main/index.blade.php index c5c09d3..e60be65 100644 --- a/resources/views/admin/employer_main/index.blade.php +++ b/resources/views/admin/employer_main/index.blade.php @@ -43,7 +43,7 @@ url: "{{ route('admin.employers-main-remove')}}", data: { id: id, - page: {{ $page }} + page: {{ $page ?? 1 }} }, success: function (data) { $('#ajax_block').html(data); @@ -69,7 +69,7 @@ type: "POST", url: "{{ route('admin.employers-main-add')}}", data:{ - page: {{ $page }} + page: {{ $page ?? 1 }} }, success: function (data) { spinStop(this_btn); -- 1.7.10.4