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