From 1c76a4cadc02a496d08667fe5eee402a36443543 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:09:29 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A8=D1=80=D0=B8=D1=84=D1=82=D1=8B=20=D0=B8=20=D0?= =?UTF-8?q?=BE=D0=B1=D1=80=D0=B5=D0=B7=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BB?= =?UTF-8?q?=D0=B8=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=82=D0=B5=D0=BA=D1=81=D1?= =?UTF-8?q?=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/ad_employers/index.blade.php | 16 ++++++++-------- resources/views/admin/education/index.blade.php | 8 ++++---- resources/views/admin/job_titles/index.blade.php | 16 ++++++++-------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/resources/views/admin/ad_employers/index.blade.php b/resources/views/admin/ad_employers/index.blade.php index a520e4b..fc9ae11 100644 --- a/resources/views/admin/ad_employers/index.blade.php +++ b/resources/views/admin/ad_employers/index.blade.php @@ -84,7 +84,7 @@ Избр. Сроч. Статус - Дата создан/изменен. + Дата создан/
изменен. Изменить @@ -98,7 +98,7 @@ {{$ad->id}} -
+
-
+

{{$ad->name}}

{{$ad->employer->name_company}} @@ -125,15 +125,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, "...") }}

@@ -186,10 +186,10 @@
- Изменить | + Изменить | @csrf @method('DELETE') - +
diff --git a/resources/views/admin/education/index.blade.php b/resources/views/admin/education/index.blade.php index 138aae0..a5d1716 100644 --- a/resources/views/admin/education/index.blade.php +++ b/resources/views/admin/education/index.blade.php @@ -47,20 +47,20 @@ @foreach($education as $cat) - + {{$cat->id}} - + {{ mb_strimwidth($cat->name, 0, 50, "...") }} - + @if ($cat->id) Изменить | Удалить @endif - +

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

diff --git a/resources/views/admin/job_titles/index.blade.php b/resources/views/admin/job_titles/index.blade.php index bd9fc88..3240e93 100644 --- a/resources/views/admin/job_titles/index.blade.php +++ b/resources/views/admin/job_titles/index.blade.php @@ -52,26 +52,26 @@ @foreach($Jobs as $job) - + {{$job->id}} - + @if (empty($job->parent->id)) Не задан @else - {{$job->parent->name}} ({{$job->parent->id}}) + {{ mb_strimwidth($job->parent->name, 0, 35, "...") }}({{$job->parent->id}}) @endif - - {{$job->name}} + + {{ mb_strimwidth($job->name, 0, 35, "...") }} - + {{$job->sort}} - + {{ $job->created_at }} - +
Изменить | @csrf -- 1.7.10.4