worker.blade.php
17.3 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
@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: "",
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>
<script>
$(document).on('click', '.js_it_button', function() {
var this_ = $(this);
var code_user_id = this_.attr('data-uid');
var code_to_user_id = this_.attr('data-tuid');
var code_vacancy = this_.attr('data-vacancy');
var user_id = $('#_user_id');
var to_user_id = $('#_to_user_id');
var vacancy = $('#_vacancy');
console.log('code_to_user_id='+code_to_user_id);
console.log('code_user_id='+code_user_id);
console.log('code_vacancy='+code_vacancy);
console.log('Клик на кнопке...');
user_id.val(code_user_id);
to_user_id.val(code_to_user_id);
vacancy.val(code_vacancy);
});
</script>
@include('js.favorite-worker')
@endsection
@section('content')
<section class="thing">
<div class="container">
<ul class="breadcrumbs thing__breadcrumbs">
<li><a href="{{ route('index') }}">Главная</a></li>
<li><a href="{{ route('bd_resume') }}">База резюме</a></li>
<li><b>@if (isset($Query[0]->users)) {{ $Query[0]->users->surname." ".$Query[0]->users->name_man." ".$Query[0]->users->surname2 }} @else Неизвестно @endif</b></li>
</ul>
<div class="thing__profile">
<img src="@if (isset($Query[0]->photo)) {{ asset(Storage::url($Query[0]->photo)) }} @else {{ asset('images/default_man.jpg') }} @endif" alt="" class="main__resume-base-body-item-photo">
<div class="thing__profile-body">
<h1 class="thing__title">@if (isset($Query[0]->users)) {{ $Query[0]->users->surname." ".$Query[0]->users->name_man." ".$Query[0]->users->surname2 }} @else Неизвестно @endif</h1>
<p class="thing__text">Сложно сказать, почему ключевые особенности структуры проекта рассмотрены
исключительно в разрезе маркетинговых и финансовых предпосылок.</p>
<div class="thing__bottom">
<a class="button" href="{{ route('resume_download', ['worker' => $Query[0]->id]) }}">
Скачать резюме
<svg>
<use xlink:href="{{ asset('images/sprite.svg#download') }}"></use>
</svg>
</a>
<button type="button" class="like js-toggle js_box_favorit {{ \App\Classes\LikesClass::get_status_worker($Query[0]) }}" data-val="{{ $Query[0]->id }}" id="elem{{ $Query[0]->id }}">
<svg>
<use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
</svg>
</button>
</div>
</div>
</div>
</div>
</section>
<main class="main">
<div class="container">
<div class="main__resume-profile">
<div class="main__content">
<div class="main__spoiler">
<button type="button" class="main__spoiler-toper js-toggle active">
Основная информация</button>
<div class="main__spoiler-body">
<table class="main__table">
<tbody>
<tr>
<td>Имя:</td>
<td><b>{{ $Query[0]->users->name_man }}</b></td>
</tr>
<tr>
<td>Должность:</td>
<td>
@if ($Query[0]->job_titles->count())
@foreach ($Query[0]->job_titles as $it)
@if ($it->is_remove == 0)
<b>{{ $it->name }}</b>
@endif
@endforeach
@endif
</td>
</tr>
<tr>
<td>Телефон:</td>
<td><b><a href="tel:{{ $Query[0]->telephone }}">{{ $Query[0]->telephone }}</a></b></td>
</tr>
<tr>
<td>E-mail:</td>
<td><b><a href="mailto:{{ $Query[0]->email }}">{{ $Query[0]->email }}</a></b></td>
</tr>
<tr>
<td>Возраст:</td>
<td><b>{{ $Query[0]->old_year }}</b></td>
</tr>
<tr>
<td>Статус:</td>
<td><b>{{ $status_work[$Query[0]->status_work] }}</b></td>
</tr>
<tr>
<td>Город проживания:</td>
<td><b>{{ $Query[0]->city }}</b></td>
</tr>
<tr>
<td>Уровень английского:</td>
<td><b>{{ $Query[0]->en_is }}</b></td>
</tr>
<tr>
<td>Опыт работы:</td>
<td><b>{{ $Query[0]->experience }}</b></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="main__spoiler">
<button type="button" class="main__spoiler-toper js-toggle">Сертификаты / документы</button>
<div class="main__spoiler-body">
@if (isset($Query[0]->sertificate))
@if ($Query[0]->sertificate->count())
@foreach($Query[0]->sertificate as $it)
<table class="main__table">
<tbody>
<tr>
<td>Название сертификата:</td>
<td><b>{{ $it->name }}</b></td>
</tr>
<tr>
<td>Организация выдавшая документ:</td>
<td><b>{{ $it->education }}</b></td>
</tr>
<tr>
<td>Дата начала обучения:</td>
<td><b>{{ $it->date_begin }}</b></td>
</tr>
<tr>
<td>Дата конца обучения:</td>
<td><b>{{ $it->end_begin }}</b></td>
</tr>
</tbody>
</table>
<br>
@endforeach
@endif
@endif
</div>
</div>
<div class="main__spoiler">
<button type="button" class="main__spoiler-toper js-toggle">Опыт работы</button>
<div class="main__spoiler-body">
@if (isset($Query[0]->place_worker))
@if ($Query[0]->place_worker->count())
@foreach($Query[0]->place_worker as $it)
<table class="main__table">
<tbody>
<tr>
<td>Должность:</td>
<td><b>{{ $it->job_title }}</b></td>
</tr>
<tr>
<td>Опыт работы в танкерном флоте:</td>
<td><b>@if($it->tanker==1) Есть @else Нет @endif</b></td>
</tr>
<tr>
<td>Дата начала работы:</td>
<td><b>{{ $it->begin_work }}</b></td>
</tr>
<tr>
<td>Дата конца работы:</td>
<td><b>{{ $it->end_work }}</b></td>
</tr>
<tr>
<td>Название компании:</td>
<td><b>{{ $it->name_company }}</b></td>
</tr>
<tr>
<td>GWT тип</td>
<td><b>{{ $it->GWT }}</b></td>
</tr>
<tr>
<td>ГД:</td>
<td><b>{{ $it->KBT }}</b></td>
</tr>
</tbody>
</table>
<br>
@endforeach
@endif
@endif
</div>
</div>
<div class="main__spoiler">
<button type="button" class="main__spoiler-toper js-toggle">Дополнительные документы</button>
<div class="main__spoiler-body">
@if (isset($Query[0]->infobloks))
@if ($Query[0]->infobloks->count())
<table class="main__table">
<tbody>
@foreach($Query[0]->infobloks as $it)
<tr>
<td>Документ:</td>
<td><b>{{ $it->name }}</b></td>
</tr>
@endforeach
</tbody>
</table>
@endif
@endif
</div>
</div>
</div>
<div class="main__resume-profile-about">
<h2 class="main__resume-profile-about-title">О себе</h2>
<p class="main__resume-profile-about-text">{{ $Query[0]->text }}</p>
@if (App\Classes\StatusUser::Status()==0)
@if ((!Auth()->user()->is_worker) && (Auth()->user()->is_message))
<div class="button main__resume-profile-about-button js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid="{{ $idiot }}" data-tuid="{{ $Query[0]->users->id }}" data-options='{"touch":false,"autoFocus":false}'>Написать сообщение</div>
@endif
@endif
</div>
<div class="main__resume-profile-info">
<h2 class="main__resume-profile-info-title">Данные о прошлых компаниях</h2>
<div class="main__resume-profile-info-body">
@if ((isset($Query[0]->prev_company)) && ($Query[0]->prev_company->count()))
@foreach ($Query[0]->prev_company as $it)
<div class="main__resume-profile-info-body-item">
<h3 class="main__resume-profile-info-body-subtitle">{{ $it->name_company }}</h3>
<ul class="main__resume-profile-info-body-inner">
<li>
<b>Руководитель</b>
<span>{{ $it->direct }}</span>
</li>
<li>
<b>Телефон того, кто может дать рекомендацию</b>
<span>
@if (!empty($it->telephone))
<a href="tel:{{$it->telephone }}">{{ $it->telephone }}</a>
@endif
@if (!empty($it->telephone2))
<a href="tel:{{$it->telephone2 }}">{{ $it->telephone2 }}</a>
@endif
</span>
</li>
</ul>
</div>
@endforeach
@else
<div class="main__resume-profile-info-body-item">
<h3 class="main__resume-profile-info-body-subtitle">Нету данных о компании</h3>
</div>
@endif
</div>
</div>
<div class="main__resume-profile-review">
<form action="{{ route('stars_answer') }}" method="POST">
@csrf
<h2 class="main__resume-profile-review-title">Оставить отзыв о работнике</h2>
<div class="rate">
<div class="rate__label">Ваша оценка:</div>
<div class="rate__stars">
<select name="stars" id="stars" class="star-rating js-stars">
<option value="5">5</option>
<option value="4">4</option>
<option value="3">3</option>
<option value="2">2</option>
<option value="1" selected>1</option>
</select>
</div>
</div>
<input type="hidden" name="worker_id" id="worker_id" value="{{ $Query[0]->id }}"/>
<div class="main__resume-profile-review-body">
<h3>Ваш отзыв</h3>
<textarea class="textarea" name="message" id="message" placeholder="Текст отзыва…" required></textarea>
<button type="submit" class="button">Оставить отзыв</button>
</div>
</form>
</div>
</div>
</div>
</main>
</div>
@endsection