Blame view

resources/views/ajax/list_vacancies.blade.php 4.84 KB
ad2cc280b   Андрей Ларионов   Правки финальные ...
1
  @php $i = ($Query->currentPage() * $Query->perPage() - $Query->count() - 1) @endphp
d152a3a68   Андрей Ларионов   Создание основных...
2
  @foreach ($Query as $Q)
ad2cc280b   Андрей Ларионов   Правки финальные ...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      @foreach ($Reclama as $Rec)
          @if ($Rec->position == $i)
              <div class="main__vacancies-thing">
                  @if (!empty($Rec->image))
                      <img src="{{ asset(Storage::url($Rec->image)) }}" alt="{{ $Rec->title }}" class="main__vacancies-thing-pic">
                  @else
                      <img src="{{ asset('images/default_ship.jpg') }}" alt="{{ $Rec->title }}" class="main__vacancies-thing-pic">
                  @endif
                  <div class="main__vacancies-thing-body">
                      <h2>{{ $Rec->title }}</h2>
                      <div class="main__vacancies-thing-scroll">
                          {!! $Rec->text !!}
                      </div>
                      <a href="{{ $Rec->link }}" class="button">Узнать больше</a>
                  </div>
              </div>
d152a3a68   Андрей Ларионов   Создание основных...
19
          @endif
ad2cc280b   Андрей Ларионов   Правки финальные ...
20
21
22
23
24
25
26
      @endforeach
      <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>
ad0b69c97   Fedor   task-132687 tasks...
27
              <span> Вернуться к списку вакансий </span>
ad2cc280b   Андрей Ларионов   Правки финальные ...
28
29
30
31
32
33
34
          </a>
  
          <div class="main__employer-page-two-item-toper">
              @if (!empty($Q->employer->logo))
                  <img src="{{ asset(Storage::url($Q->employer->logo)) }}" alt="{{ $Q->employer->name }}">
              @else
                  <img src="{{ asset('images/default_ship.jpg') }}" alt="{{ $Rec->title }}" class="main__vacancies-thing-pic">
d152a3a68   Андрей Ларионов   Создание основных...
35
              @endif
ddb8f38fb   Андрей Ларионов   Коммит по редизай...
36
              <span>@if (isset($Q->employer->name_company)) {{ $Q->employer->name_company }} @else Не определена @endif</span>
d152a3a68   Андрей Ларионов   Создание основных...
37
          </div>
ad2cc280b   Андрей Ларионов   Правки финальные ...
38
39
  
          <div class="main__employer-page-two-item-text">
ddb8f38fb   Андрей Ларионов   Коммит по редизай...
40
41
              <div class="main__employer-page-two-item-text-name">
                  <h3>@if (!empty($Q->name)) {{ $Q->name }}@else Не указано @endif </h3>
ad2cc280b   Андрей Ларионов   Правки финальные ...
42
              </div>
d152a3a68   Андрей Ларионов   Создание основных...
43
          </div>
ad2cc280b   Андрей Ларионов   Правки финальные ...
44
45
46
47
48
49
  
          <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>
d152a3a68   Андрей Ларионов   Создание основных...
50
          </div>
ad2cc280b   Андрей Ларионов   Правки финальные ...
51
52
53
54
55
56
57
58
59
60
61
62
  
          <div class="main__employer-page-two-item-tags">
              @if (!empty($Q->jobs_code[0]->position_ship))
                  <span class="main__employer-page-two-item-tag"> #{{ $Q->jobs_code[0]->position_ship }}</span>
              @else
                  @if (isset($Q->jobs))
                      @foreach ($Q->jobs as $key => $j)
                          <span class="main__employer-page-two-item-tag"> #{{ $j->name }}</span>
                      @endforeach
                  @endif
              @endif
          </div>
ddb8f38fb   Андрей Ларионов   Коммит по редизай...
63

ad2cc280b   Андрей Ларионов   Правки финальные ...
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
          <div class="main__employer-page-two-item-buttons">
              @guest
                  <button type="button" data-fancybox data-src="#question" data-options='{"touch":false,"autoFocus":false}'
                          class="button main__employer-page-two-item-button">Откликнуться</button>
              @else
                  @if (App\Classes\StatusUser::Status()==1)
                      <button type="button" data-fancybox data-src="#send" data-vacancy="{{ $Q->id }}" data-uid="{{ $uid }}" data-tuid="{{ $Q->employer->user_id }}"  data-options='{"touch":false,"autoFocus":false}'
                              class="button main__employer-page-two-item-button js_send_it_button">Откликнуться</button>
                  @else
                      <button type="button" data-fancybox data-src="#send2" data-vacancy="{{ $Q->id }}" data-uid="{{ $uid }}" data-tuid="{{ $Q->employer->user_id }}"  data-options='{"touch":false,"autoFocus":false}'
                              class="button main__employer-page-two-item-button js_send_it_button">Откликнуться</button>
                  @endif
              @endguest
              <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">
96789e002   Сергей П   задаи 16,17,18 + ...
80
              <div class="main__employer-page-two-item-bottom-date">{{ date('d.m.Y', strtotime($Q->updated_at)) }}</div>
ad2cc280b   Андрей Ларионов   Правки финальные ...
81
82
83
84
85
              <button type="button" data-val="{{ $Q->id }}"  class="like main__employer-page-two-item-bottom-like js-toggle js_vacancy_favorites <?=App\Classes\Cookies_vacancy::selected_vacancy($Q->id);?>">
                  <svg>
                      <use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use>
                  </svg>
              </button>
d152a3a68   Андрей Ларионов   Создание основных...
86
87
          </div>
      </div>
ad2cc280b   Андрей Ларионов   Правки финальные ...
88
      @php $i++ @endphp
d152a3a68   Андрей Ларионов   Создание основных...
89
90
91
  @endforeach
  <div style="margin-top: 20px">
      {{ $Query->appends($_GET)->links('paginate') }}
ad0b69c97   Fedor   task-132687 tasks...
92
  </div>