Blame view
resources/views/layout/pdf.blade.php
17.9 KB
99702d426 Коммит вечер воск... |
1 2 |
<!DOCTYPE html> <html lang="ru"> |
92b3de35e Задача 45 + фиксы |
3 4 5 |
@php $worker = $Query[0]; @endphp |
99702d426 Коммит вечер воск... |
6 7 8 9 10 |
<head> <meta charset="utf-8"> <title>Резюме соискателя</title> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="theme-color" content="#377D87"> |
6b9776dfb Вторник работа на... |
11 |
<style> |
7571b20fd Коммит 13 марта 2024 |
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
body { font-family:'DejaVu Sans',sans-serif; background:#fff; font-size:1.6rem; font-weight:400; color:#363A3F; } .main { padding: 30px 0; } .thing { color: #3a3b3c; |
7571b20fd Коммит 13 марта 2024 |
26 27 28 29 30 31 32 33 |
} .thing__profile-photo { width: 200px; border-radius: 8px; float: left; margin-right: 20px; } |
7571b20fd Коммит 13 марта 2024 |
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
.thing__title { width: 100%; font-size: 32px; font-weight: 700; line-height: 1.1; margin: 0; } .thing__text { font-size: 14px; line-height: 1.4; margin: 15px 0 0 0; } .main__spoiler { margin: 0px 0px 32px 0px; } |
7571b20fd Коммит 13 марта 2024 |
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 |
.main__table { border-collapse: collapse; table-layout: fixed; font-size: 14px; width: 100%; background: #ffffff; } .main__table thead { color: #ffffff; font-size: 16px; background-color: #377d87; } .main__table th { padding: 8px 16px; } .main__table td { width: 40%; padding: 8px 16px; border: 1px solid #cecece; } .main__table td b { font-weight: 700; } .main__table b { display: block; } .main__table a { color: #377d87; text-decoration: underline; } .main__table td + td { width: 60%; } .main__table_three td { width: 25% !important; } |
e3d190acc фиксы для пдф |
95 96 97 98 99 100 101 102 |
.main__table_experience td { width: 25% !important; hyphens: auto; overflow: hidden; } .main__table_experience body td:nth-child(1){ width: 50% !important; } |
7571b20fd Коммит 13 марта 2024 |
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
.main__table_three td:last-child { width: 50% !important; } .main h2 { margin: 0; font-weight: 700; font-size: 30px; } .main p { margin: 0; font-size: 14px; line-height: 1.4; margin: 15px 0 0 0; } |
7571b20fd Коммит 13 марта 2024 |
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
.main__resume-profile-info-body-inner li { list-style-type: none; margin: 0px 0px 20px 0px; } .main__resume-profile-info-body-inner b { display: block; margin: 0px 0px 6px 0px; color: #377d87; font-size: 14px; } .main__resume-profile-info-body-inner span { display: block; } .main__resume-profile-info-body-inner a { display: block; text-decoration: none; color: inherit; } |
6b9776dfb Вторник работа на... |
140 |
</style> |
99702d426 Коммит вечер воск... |
141 142 143 144 145 146 |
</head> <body id="body" class="pdf"> <section class="thing thing_pdf"> <div class="container"> <div class="thing__profile"> |
e20c428e5 Коммит по 20 числу |
147 148 149 150 151 |
@if (!empty($Query[0]['photo'])) <img src="{{ asset(Storage::url($Query[0]['photo'])) }}" alt="" class="thing__profile-photo"> @else <img src="{{ asset('images/default_man.jpg') }}" alt="" class="thing__profile-photo"> @endif |
99702d426 Коммит вечер воск... |
152 |
<div class="thing__profile-body"> |
7571b20fd Коммит 13 марта 2024 |
153 154 155 |
<h1 class="thing__title">{{ $Query[0]['users']['surname']." ".$Query[0]['users']['name_man']." ".$Query[0]['users']['surname2'] }}</h1> <div style="clear:both;"></div> <p class="thing__text">{{ $Query[0]['text'] }}</p> |
99702d426 Коммит вечер воск... |
156 157 |
</div> </div> |
e20c428e5 Коммит по 20 числу |
158 159 160 |
@if (!empty($Query[0]['users']['file'])) <a href="{{ asset(Storage::url($Query[0]['users']['file'])) }}">Анкета-файл</a> @endif |
99702d426 Коммит вечер воск... |
161 162 163 164 165 166 167 |
</div> </section> <main class="main"> <div class="container"> <div class="main__resume-profile"> <div class="main__content"> <div class="main__spoiler"> |
99702d426 Коммит вечер воск... |
168 169 |
<div class="main__spoiler-body"> <table class="main__table"> |
7571b20fd Коммит 13 марта 2024 |
170 171 172 173 174 |
<thead> <tr> <th colspan="2">Основная информация</th> </tr> </thead> |
99702d426 Коммит вечер воск... |
175 176 |
<tbody> <tr> |
92b3de35e Задача 45 + фиксы |
177 178 179 180 181 182 183 184 185 186 |
<td><b>Статус:</b></td> <td>{{ $status_work[$worker->status_work] }}</td> </tr> <tr> <td><b>ФИО:</b></td> <td>{{ $worker->users->surname." ".$worker->users->name_man." ".$worker->users->surname2 }}</td> </tr> <tr> <td><b>Возраст:</b></td> <td>{{ $worker->old_year ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
187 188 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
189 |
<td><b>Желаемые вакансии:</b></td> |
7571b20fd Коммит 13 марта 2024 |
190 |
<td> |
92b3de35e Задача 45 + фиксы |
191 192 193 194 195 |
@if ($Query[0]->job_titles->count()) @foreach ($Query[0]->job_titles as $it) @if ($it->is_remove == 0) {{ $it->name }} / @endif |
7571b20fd Коммит 13 марта 2024 |
196 |
@endforeach |
92b3de35e Задача 45 + фиксы |
197 198 199 |
@else - @endif |
7571b20fd Коммит 13 марта 2024 |
200 |
</td> |
99702d426 Коммит вечер воск... |
201 202 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
203 204 |
<td><b>Пожелания по З/П:</b></td> <td>{{ $worker->salary_expectations ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
205 206 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
207 208 |
<td><b>Опыт работы:</b></td> <td>{{ $worker->experience ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
209 210 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
211 212 |
<td><b>Уровень английского:</b></td> <td>{{ $worker->english_level ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
213 214 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
<td><b>Дата готовности к посадке:</b></td> <td>{{ $worker->ready_boart_date ?? '-' }}</td> </tr> <tr> <td><b>Предпочтение по типу судна:</b></td> <td>{{ $worker->boart_type_preference ?? '-' }}</td> </tr> <tr> <td><b>Наличие визы:</b></td> <td>{{ $worker->visa_available ?? '-' }}</td> </tr> <tr> <td><b>Наличие танкерных документов:</b></td> <td>{{ $worker->tanker_documents_available ?? '-' }}</td> </tr> <tr> <td><b>Наличие подтверждения для работы на ВВП:</b></td> <td>{{ $worker->confirmation_work_for_vvp ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
233 234 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
235 236 |
<td><b>Наличие военного билета / приписного свидетельства:</b></td> <td>{{ $worker->military_id_available ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
237 238 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
239 240 |
<td><b>Город проживания:</b></td> <td>{{ $worker->city ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
241 242 |
</tr> <tr> |
92b3de35e Задача 45 + фиксы |
243 244 245 246 247 248 249 250 251 252 |
<td><b>Телефон:</b></td> <td>{{ $worker->telephone ?? '-' }}</td> </tr> <tr> <td><b>E-mail:</b></td> <td>{{ $worker->email ?? '-' }}</td> </tr> <tr> <td><b>Контакты родственников:</b></td> <td>{{ $worker->telephone2 ?? '-' }}</td> |
99702d426 Коммит вечер воск... |
253 254 255 256 257 |
</tr> </tbody> </table> </div> </div> |
92b3de35e Задача 45 + фиксы |
258 |
|
99702d426 Коммит вечер воск... |
259 |
<div class="main__spoiler"> |
99702d426 Коммит вечер воск... |
260 261 |
<div class="main__spoiler-body"> <table class="main__table"> |
7571b20fd Коммит 13 марта 2024 |
262 |
<thead> |
92b3de35e Задача 45 + фиксы |
263 264 265 |
<tr> <th colspan="2">Сертификаты / документы</th> </tr> |
7571b20fd Коммит 13 марта 2024 |
266 267 |
</thead> <tbody> |
92b3de35e Задача 45 + фиксы |
268 269 270 271 272 273 |
<tr> <td><b>Название сертификата:</b></td> <td><b>Действителен до:</b></td> </tr> @if (isset($Query[0]->sertificate) && $Query[0]->sertificate->count()) @foreach($Query[0]->sertificate as $it) |
7571b20fd Коммит 13 марта 2024 |
274 |
<tr> |
92b3de35e Задача 45 + фиксы |
275 276 |
<td>{{ $it->name }}</td> <td>{{ date('d.m.Y', strtotime($it->end_begin)) }}</td> |
7571b20fd Коммит 13 марта 2024 |
277 278 279 280 281 282 283 284 |
</tr> @endforeach @else <tr> <td> - </td> <td> - </td> </tr> @endif |
99702d426 Коммит вечер воск... |
285 286 287 288 |
</tbody> </table> </div> </div> |
92b3de35e Задача 45 + фиксы |
289 |
|
99702d426 Коммит вечер воск... |
290 |
<div class="main__spoiler"> |
99702d426 Коммит вечер воск... |
291 |
<div class="main__spoiler-body"> |
92b3de35e Задача 45 + фиксы |
292 |
<table class="main__table"> |
7571b20fd Коммит 13 марта 2024 |
293 |
<thead> |
99702d426 Коммит вечер воск... |
294 |
<tr> |
92b3de35e Задача 45 + фиксы |
295 |
<th colspan="2">Дополнительные документы</th> |
99702d426 Коммит вечер воск... |
296 |
</tr> |
7571b20fd Коммит 13 марта 2024 |
297 298 |
</thead> <tbody> |
92b3de35e Задача 45 + фиксы |
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
@if ($infoblocks->count()) @foreach ($infoblocks as $info) @php $finder = false; @endphp @if (isset($Query[0]->infobloks)) @if ($Query[0]->infobloks->count()) @foreach($Query[0]->infobloks as $it) @if ($info->id == $it->id) <tr> <td><b>{{ $it->name }}</b></td> <td> @if ($it->model_dop_info[0]->status == 0) Не указано @elseif($it->model_dop_info[0]->status==1) В наличии @else Отсутствует @endif </td> </tr> @php $finder = true; @endphp @endif @endforeach @endif @endif @if (!$finder) |
7571b20fd Коммит 13 марта 2024 |
322 |
<tr> |
92b3de35e Задача 45 + фиксы |
323 324 325 |
<td><b>{{ $info->name }}</b></td> <td> Не указано |
7571b20fd Коммит 13 марта 2024 |
326 327 |
</td> </tr> |
92b3de35e Задача 45 + фиксы |
328 |
@endif |
7571b20fd Коммит 13 марта 2024 |
329 330 |
@endforeach @endif |
99702d426 Коммит вечер воск... |
331 332 333 334 |
</tbody> </table> </div> </div> |
7571b20fd Коммит 13 марта 2024 |
335 |
|
92b3de35e Задача 45 + фиксы |
336 337 |
<div class="main__spoiler"> <div class="main__spoiler-body"> |
e3d190acc фиксы для пдф |
338 |
<table class="main__table main__table_experience"> |
92b3de35e Задача 45 + фиксы |
339 340 341 342 343 344 345 |
<thead> <tr> <th colspan="9">Опыт работы</th> </tr> </thead> <tbody> <tr> |
e3d190acc фиксы для пдф |
346 347 348 349 350 351 352 353 354 |
<td style="width: 20.1%;"><b>Должность</b></td> <td style="width: 11.1%;"><b>Название т/х</b></td> <td style="width: 11.1%;"><b>Тип судна</b></td> <td style="width: 11.1%;"><b>Марка ГД</b></td> <td style="width: 11.1%;"><b>Мощность ГД (кВТ)</b></td> <td style="width: 11.1%;"><b>Водо- измещение (DWT)</b></td> <td style="width: 11.1%;"><b>Название компании</b></td> <td style="width: 11.1%;"><b>Начало контракта</b></td> <td style="width: 11.1%;"><b>Окончание контракта</b></td> |
92b3de35e Задача 45 + фиксы |
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
</tr> @if (count($Query[0]->place_worker) > 0) @foreach($Query[0]->place_worker as $it) <tr> <td>{{ $it->job_title }}</td> <td>{{ $it->teplohod }}</td> <td>{{ $it->GWT }}</td> <td>{{ $it->Marka_GD }}</td> <td>{{ $it->KBT }}</td> <td>{{ $it->GRT }}</td> <td>{{ $it->name_company }}</td> <td>{{ date('d.m.Y', strtotime($it->begin_work)) }}</td> <td>{{ date('d.m.Y', strtotime($it->end_work)) }}</td> </tr> @endforeach @else <td>-</td> <td>-</td> <td>-</td> <td>-</td> <td>-</td> <td>-</td> <td>-</td> <td>-</td> <td>-</td> @endif </tbody> </table> </div> </div> <div class="main__spoiler"> <div class="main__spoiler-body"> <table class="main__table main__table_three"> <thead> <tr> <th colspan="4">Данные о прошлых компаниях</th> </tr> </thead> <tbody> <tr> |
e3d190acc фиксы для пдф |
396 397 398 399 |
<td><b>Название компании</b></td> <td><b>ФИО сотрудника</b></td> <td><b>Должность сотрудника</b></td> <td><b>Телефон сотрудника</b></td> |
92b3de35e Задача 45 + фиксы |
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
</tr> @if ((isset($worker->prev_company)) && ($worker->prev_company->count())) @foreach ($worker->prev_company as $prev_company) <tr> <td>{{ $prev_company->name_company }}</td> <td>{{ $prev_company->direct }}</td> <td>{{ $prev_company->telephone }}</td> <td>{{ $prev_company->telephone2 }}</td> </tr> @endforeach @else <tr> <td>-</td> <td>-</td> <td>-</td> <td>-</td> </tr> @endif </tbody> </table> </div> |
99702d426 Коммит вечер воск... |
421 422 423 424 425 |
</div> </div> </div> </div> </main> |
99702d426 Коммит вечер воск... |
426 |
</body> |
99702d426 Коммит вечер воск... |
427 |
</html> |