list_vacancies.blade.php
9.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@extends('layout.frontend', ['title' => 'Вакансии РекаМоре'])
@section('scripts')
<script>
console.log('Test system');
$(document).on('change', '#jobs', function() {
var val = $(this).val();
var main_oskar = $('#main_ockar');
console.log('Code='+val);
console.log('Click change...');
$.ajax({
type: "GET",
url: "{{ route('list-vacancies', ['categories' => $categories->id]) }}",
data: "job="+val,
success: function (data) {
console.log('Выбор сделан!');
console.log(data);
main_oskar.html(data);
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
error: function (data) {
data = JSON.stringify(data);
console.log('Error: ' + data);
}
});
});
</script>
@endsection
@section('content')
<section class="thing">
<div class="container">
<form class="thing__body">
<ul class="breadcrumbs thing__breadcrumbs">
<li><a href="{{ route('index') }}">Главная</a></li>
<li><a href="{{ route('vacancies') }}">Вакансии</a></li>
<li><b>{{ isset($Name_categori[0]) ? $Name_categori[0]->name : 'Все категории' }}</b></li>
</ul>
<h1 class="thing__title">Вакансии</h1>
<p class="thing__text">С другой стороны, социально-экономическое развитие не оставляет шанса для
существующих финансовых и административных условий.</p>
<div class="select select_search thing__select">
<div class="select__icon">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#search') }}"></use>
</svg>
</div>
<select class="js-select2" id="jobs" name="jobs">
<option value="0" disabled selected>Выберите должность</option>
@if ($Job_title->count())
@foreach($Job_title as $JT)
<option value="{{ $JT->id }}">{{ $JT->name }}</option>
@endforeach
@endif
</select>
</div>
</form>
</div>
</section>
<main class="main">
<div class="container">
<div class="main__vacancies">
@if (isset($job))
<h2 class="main__vacancies-title">Категория вакансий {{ $job }}</h2>
@else
<h2 class="main__vacancies-title">Все категории</h2>
@endif
<div class="filters main__vacancies-filters">
<div class="filters__label" id="col-vo" name="col-vo">Показано @if ($Query_count < 3) {{$Query_count}} @else 3 @endif из @isset($Query_count) {{ $Query_count }} @else 0 @endisset результатов поиска</div>
<div class="filters__body">
<div class="select filters__select">
<select class="js-select2" id="sort_ajax" name="sort_ajax">
<option value="default">Сортировка (по умолчанию)</option>
<option value="name (asc)">По имени (возрастание)</option>
<option value="name (desc)">По имени (убывание)</option>
<option value="created_at (asc)">По дате (возрастание)</option>
<option value="created_at (desc)">По дате (убывание)</option>
</select>
</div>
</div>
</div>
<div id="main_ockar" name="main_ockar" style="width:100%;">
@foreach ($Query as $Q)
<div class="main__vacancies-item main__employer-page-two-item">
<a href="{{ route('list-vacancies', ['categories' => $categories->id]) }}" class="back main__employer-page-two-item-back">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#back') }}"></use>
</svg>
<span>
Вернуться к списку вакансий
</span>
</a>
<div class="main__employer-page-two-item-toper">
@if (isset($Q->employer))
<img src="{{ asset(Storage::url($Q->employer->logo)) }}" alt="{{ $Q->employer->name }}">
@endif
<span>@if (!empty($Q->name)) {{ $Q->name }} @endif</span>
</div>
<div class="main__employer-page-two-item-text">
<div class="main__employer-page-two-item-text-name">Судоходная компания ведет набор
специалистов на следующие должности:</div>
<div class="main__employer-page-two-item-text-links">
@if (isset($Q->jobs))
@foreach ($Q->jobs as $key => $j)
<a>“{{ $j->name }}” – з/п от @if (isset($Q->jobs_code[$key]->min_salary)) {{ $Q->jobs_code[$key]->min_salary }} @endif - @if (isset($Q->jobs_code[$key]->max_salary)) {{ $Q->jobs_code[$key]->max_salary }} @endif рублей (на руки)</a>
@endforeach
@endif
</div>
</div>
<div class="main__employer-page-two-item-text">
<div class="main__employer-page-two-item-text-name">Мы предлагаем:</div>
<div class="main__employer-page-two-item-text-body">
{!! $Q->text !!}
</div>
</div>
<div class="main__employer-page-two-item-text">
<div class="main__employer-page-two-item-text-name">Наши ожидания:</div>
<div class="main__employer-page-two-item-text-body">
{!! $Q->description !!}
</div>
</div>
<div class="main__employer-page-two-item-text">
<div class="main__employer-page-two-item-text-name">Резюме направляйте на почту:</div>
<div class="main__employer-page-two-item-text-body">
{!! $Q->contacts_emails !!}
</div>
</div>
<div class="main__employer-page-two-item-text">
<div class="main__employer-page-two-item-text-name">Или звоните:</div>
<div class="main__employer-page-two-item-text-body">
{!! $Q->contacts_telephones !!}
</div>
</div>
<div class="main__employer-page-two-item-tags">
@if (isset($Q->jobs))
@foreach ($Q->jobs as $key => $j)
<span class="main__employer-page-two-item-tag">#{{ $j->name }}</span>
@endforeach
@endif
</div>
<div class="main__employer-page-two-item-buttons">
<button type="button"
class="button main__employer-page-two-item-button">Откликнуться</button>
<a href="{{ route('vacancie', ['vacancy' => $Q->id]) }}" class="button button_light main__employer-page-two-item-button">Подробнее</a>
</div>
<div class="main__employer-page-two-item-bottom">
<div class="main__employer-page-two-item-bottom-date">{{ $Q->created_at }}</div>
<button type="button" class="like main__employer-page-two-item-bottom-like js-toggle">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
</svg>
</button>
</div>
</div>
@endforeach
<div style="margin-top: 20px">
{{ $Query->appends($_GET)->links('paginate') }}
</div>
</div><!-- конец -->
</div>
</div>
</main>
@endsection