Blame view
resources/views/ajax/resume_1.blade.php
3.75 KB
4a6e91624 Коммит по кабинету |
1 2 |
@if ($resumes->count()) @foreach ($resumes as $res) |
0fc30621f коммит от пятницы... |
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 |
<div class="main__resume-base-body-item"> <div class="main__resume-base-body-item-buttons"> <button type="button" data-id="{{ $res->id }}" id="elem{{ $res->id }}" class="like js-toggle js_box_favorit {{ \App\Classes\LikesClass::get_status_worker($res) }}" data-val="{{ $res->id }}"> <svg> <use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use> </svg> </button> @guest <button type="button" data-fancybox data-src="#question" data-options='{"touch":false,"autoFocus":false}' class="chat js-toggle js_it_button"> <svg> <use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use> </svg> </button> @else @if (App\Classes\StatusUser::Status()==0) @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_message)) <button type="button" class="chat js-toggle js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid="{{ $idiot}}" data-tuid="{{ $res->users->id }}" data-options='{"touch":false,"autoFocus":false}'> <svg> <use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use> </svg> </button> @endif @else <button type="button" data-fancybox data-src="#question2" data-options='{"touch":false,"autoFocus":false}' class="chat js-toggle js_it_button"> |
ad20c698a Результаты на вос... |
29 30 31 |
<svg> <use xlink:href="{{ asset('images/sprite.svg#chat') }}"></use> </svg> |
0fc30621f коммит от пятницы... |
32 33 34 35 36 37 38 39 40 |
</button> @endif @endif </div> <div class="main__resume-base-body-item-wrapper"> <img src="@isset ($res->photo) {{ asset(Storage::url($res->photo)) }} @else {{ asset('images/default_man.jpg')}} @endif" alt="" class="main__resume-base-body-item-photo"> <div class="main__resume-base-body-item-inner"> <div> <b>Статус</b> <span>{{ $status_work[$res->status_work] }}</span> |
ad20c698a Результаты на вос... |
41 |
</div> |
0fc30621f коммит от пятницы... |
42 43 44 |
<div> <b>Имя работника</b> <span>@if (isset($res->users)){{ $res->users->surname." ".$res->users->name_man." ".$res->users->surname2 }} @endif</span> |
ad20c698a Результаты на вос... |
45 |
</div> |
0fc30621f коммит от пятницы... |
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
<div> <b>Номер телефона</b> <span><a href="tel:{{ $res->telephone }}">{{ $res->telephone }}</a></span> </div> <div> <b>Электронный адрес</b> <span><a href="mailto:{{ $res->email }}">{{ $res->email }}</a></span> </div> <div> <b>Город проживания</b> <span>{{ $res->city }}</span> </div> <div> <b>Опыт работы</b> <span>{{ $res->experience }}</span> |
ac8b91cfd Обновление системы. |
61 |
</div> |
ad20c698a Результаты на вос... |
62 |
</div> |
0fc30621f коммит от пятницы... |
63 64 65 66 67 68 69 70 71 72 73 74 75 |
</div> <div class="main__employer-page-two-item-tags"> @if ($res->job_titles->count()) @if (isset($res->job_titles)) @foreach ($res->job_titles as $key => $j) <span class="main__employer-page-two-item-tag">#{{ $j->name }}</span> @endforeach @endif @endif </div> <a href="{{ route('resume_profile', ['worker' => $res->id]) }}" class="button button_light main__resume-base-body-item-link">Перейти в резюме</a> </div> @endforeach |
ad20c698a Результаты на вос... |
76 |
|
0fc30621f коммит от пятницы... |
77 |
{{ $resumes->appends($_GET)->links('paginate') }} |
ac8b91cfd Обновление системы. |
78 79 |
@else <p>По данному запросу ничего не найдено</p> |
ad20c698a Результаты на вос... |
80 |
@endif |