From 185d7799ae1231b5c6077250eee54744e488e606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B4=D1=80=D0=B5=D0=B9=20=20=D0=9B=D0=B0=D1=80?= =?UTF-8?q?=D0=B8=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Thu, 9 Nov 2023 14:14:50 +0700 Subject: [PATCH] =?UTF-8?q?ajax-=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D0=B0=20?= =?UTF-8?q?=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0?= =?UTF-8?q?=BB=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2=20=D1=80=D0=B0=D0=B7=D0=B4=D0?= =?UTF-8?q?=B5=D0=BB=D0=B5=20=D0=B2=D0=B0=D0=BA=D0=B0=D0=BD=D1=81=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/admin/ad_employers/index_ajax.blade.php | 40 +++++++++++--------- 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/resources/views/admin/ad_employers/index_ajax.blade.php b/resources/views/admin/ad_employers/index_ajax.blade.php index b879c77..9070165 100644 --- a/resources/views/admin/ad_employers/index_ajax.blade.php +++ b/resources/views/admin/ad_employers/index_ajax.blade.php @@ -11,7 +11,7 @@ Избр. Сроч. Статус - Дата создан/изменен. + Дата создан/
изменен. Изменить @@ -25,7 +25,7 @@ {{$ad->id}} -
+
-
+

{{$ad->name}}

{{$ad->employer->name_company}} @@ -52,15 +52,15 @@ -

+
@if ($ad->jobs->count())
@foreach ($ad->jobs as $title) -

{{$title->name}}

+

{{ mb_strimwidth($title->name, 0, 35, "...") }}

-

/ {{$title->name}}

+

/ {{ mb_strimwidth($title->name, 0, 35, "...") }}

@@ -74,24 +74,24 @@ @if ($ad->favorite_vacancy==1) - Да - + Да + @else - Нет - + Нет + @endif @if ($ad->sroch_vacancy==1) - Да - + Да + @else - Нет - + Нет + @endif @@ -100,7 +100,7 @@ -
+

{{ date('d.m.Y', strtotime($ad->created_at)) }}

@@ -108,12 +108,16 @@

+ - - Изменить - +
+ Изменить | + @csrf + @method('DELETE') + +
@endforeach -- 1.7.10.4