Blame view

resources/views/workers/messages.blade.php 10.7 KB
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  @extends('layout.frontend', ['title' => 'Мои сообщения - РекаМоре'])
  
  @section('scripts')
  
  @endsection
  
  @section('content')
      <section class="cabinet">
          <div class="container">
              <ul class="breadcrumbs cabinet__breadcrumbs">
                  <li><a href="{{ route('index') }}">Главная</a></li>
                  <li><b>Личный кабинет</b></li>
              </ul>
              <div class="cabinet__wrapper">
                  <div class="cabinet__side">
                      <div class="cabinet__side-toper">
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
17
                          @include('workers.emblema')
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  
                      </div>
  
                      @include('workers.menu', ['item' => 2])
                  </div>
                  <div class="cabinet__body">
                      <div class="cabinet__body-item">
                          <h2 class="title cabinet__title">Сообщения</h2>
                      </div>
                      <div class="cabinet__body-item">
                          <div class="cabinet__filters">
                              <div class="cabinet__filters-item">
                                  <div class="cabinet__filters-buttons">
                                      <a href="{{ route('worker.messages', ['type_message' => 'input']) }}" class="button button_light @if ($type_message == 'input') active @endif">Входящие ({{ $count_input }})</a>
                                      <a href="{{ route('worker.messages', ['type_message' => 'output']) }}" class="button button_light @if ($type_message == 'output') active @endif">Исходящие ({{ $count_output }})</a>
                                  </div>
                              </div>
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
35
                              <!--<div class="cabinet__filters-item">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
36
37
38
39
40
41
42
43
44
                                  <div class="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>
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
45
                              </div>-->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
46
                          </div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
47
48
49
50
                          @if ($messages->count())
                              @foreach($messages as $it)
                                  <div class="messages__item">
                                      <div class="messages__item-info">
48baec8da   Андрей Ларионов   Коммит добавление...
51
                                          <!--<pre> print_r(asset(Storage::url($it->user_from->employers[0]->logo))) }}</pre>-->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
52
53
54
55
                                          <div class="messages__item-photo">
                                              <svg>
                                                  <use xlink:href="{{ asset('images/sprite.svg#pic') }}"></use>
                                              </svg>
2c692f9c0   Андрей Ларионов   Коммит обновление...
56
                                              <!-- Комментарий: обновление структуры вывода картинок, все корректное -->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
57
                                              @if ($type_message == 'input')
b504585f8   Андрей Ларионов   Коммит - баг с уд...
58
59
60
61
62
63
64
                                                 @if (isset($it->user_from->is_worker))
                                                      @if ($it->user_from->is_worker)
                                                          @if (isset($it->user_from->workers[0]->photo))
                                                              <img src="{{ asset(Storage::url($it->user_to->workers[0]->photo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
65
                                                      @else
b504585f8   Андрей Ларионов   Коммит - баг с уд...
66
67
68
                                                          @if (isset($it->user_from->employers[0]->logo))
                                                              <img src="{{ asset(Storage::url($it->user_from->employers[0]->logo)) }}" alt="">
                                                          @else
08320bd37   Андрей Ларионов   Коммит messages
69
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
b504585f8   Андрей Ларионов   Коммит - баг с уд...
70
                                                          @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
71
72
                                                      @endif
                                                  @else
08320bd37   Андрей Ларионов   Коммит messages
73
                                                      <img src="{{ asset('images/default_man.jpg') }}" alt="">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
74
75
                                                  @endif
                                              @endif
2c692f9c0   Андрей Ларионов   Коммит обновление...
76
                                              <!-- Обновление исходящих сообщений - фотографии компании и работника -->
77f5d911f   Андрей Ларионов   Коммит работника ...
77
                                              <!-- коммит 2 -->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
78
                                              @if ($type_message == 'output')
b504585f8   Андрей Ларионов   Коммит - баг с уд...
79
80
81
82
83
84
85
                                                  @if (isset($it->user_from->is_worker))
                                                      @if ($it->user_from->is_worker)
                                                          @if (isset($it->user_from->workers[0]->photo))
                                                              <img src="{{ asset(Storage::url($it->user_from->workers[0]->photo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
86
                                                      @else
b504585f8   Андрей Ларионов   Коммит - баг с уд...
87
88
89
90
91
                                                          @if (isset($it->user_from->employers->logo))
                                                              <img src="{{ asset(Storage::url($it->user_from->employers->logo)) }}" alt="">
                                                          @else
                                                              <img src="{{ asset('images/default_man.jpg') }}" alt="">
                                                          @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
92
93
                                                      @endif
                                                  @else
b504585f8   Андрей Ларионов   Коммит - баг с уд...
94
                                                      <img src="{{ asset('images/default_man.jpg') }}" alt="">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
95
96
97
98
                                                  @endif
                                              @endif
                                          </div>
                                          <div class="messages__item-text">
35796e00c   Андрей Ларионов   Работа с блейдами...
99
                                              <div>@if (isset($it->vacancies)) @php $ad_name = $it->vacancies->name; @endphp @else @php $ad_name = 'Вакансия удалена'; @endphp @endif
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
100
101
                                                  От: @if (isset($it->user_from))
                                                      @if ($it->user_from->id !== $user_id)
35796e00c   Андрей Ларионов   Работа с блейдами...
102
                                                          <a href="{{ route('worker.dialog', ['user1' => $user_id, 'user2' => $it->user_from->id, 'ad_employer' => $it->ad_employer_id, 'ad_name' => $ad_name]) }}" style="text-decoration: underline">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
103
104
105
106
107
108
109
110
111
112
113
                                                              {{ $it->user_from->surname." ".$it->user_from->name_man." ".$it->user_from->surname2." (".$it->user_from->id.")" }}
                                                          </a>
                                                      @else
                                                          {{ $it->user_from->surname." ".$it->user_from->name_man." ".$it->user_from->surname2." (".$it->user_from->id.")" }}
                                                      @endif
                                                  @else
                                                      Удаленный пользователь
                                                  @endif
                                                  <br>
                                                  К: @if (isset($it->user_to))
                                                      @if ($it->user_to->id !== $user_id)
35796e00c   Андрей Ларионов   Работа с блейдами...
114
115
  
                                                          <a href="{{ route('worker.dialog', ['user1' => $user_id, 'user2' => $it->user_to->id, 'ad_employer' => $it->ad_employer_id, 'ad_name' => $ad_name]) }}" style="text-decoration: underline">
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
116
117
118
119
120
121
122
123
124
                                                              {{ $it->user_to->surname." ".$it->user_to->name_man." ".$it->user_to->surname2." (".$it->user_to->id.")" }}
                                                          </a>
                                                      @else
                                                          {{ $it->user_to->surname." ".$it->user_to->name_man." ".$it->user_to->surname2." (".$it->user_to->id.")" }}
                                                      @endif
                                                  @else
                                                      Удаленный пользователь
                                                  @endif
                                              </div>
0ea985223   Андрей Ларионов   Коммит по диалога...
125
                                              <div><span>Вакансия:</span>@if (isset($it->vacancies)) {{ $it->vacancies->name." (".($it->vacancies->id).")" }} @else Удалена @endif</div>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
126
127
128
129
130
131
                                              <div><span>Текст:</span>{{ $it->text }}</div>
                                          </div>
                                      </div>
                                      <div class="messages__item-date">{{ $it->created_at }}</div>
                                  </div>
                              @endforeach
6e2255214   Андрей Ларионов   Работа над сообще...
132
133
134
135
  
                              <div style="margin-top: 20px">
                                  {{ $messages->onEachSide(0)->appends($_GET)->links('paginate') }}
                              </div><!-- конец -->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
136
137
138
                          @else
                              <div class="notify">
                                  <svg>
6e2255214   Андрей Ларионов   Работа над сообще...
139
                                      <use xlink:href="{{ asset('images/sprite.svg#i') }}"></use>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
140
141
142
143
144
145
146
147
148
149
150
151
                                  </svg>
                                  <span>Сообщений не найдено</span>
                              </div>
                          @endif
                      </div>
                  </div>
              </div>
          </div>
      </section>
      </div>
      <div>
  @endsection