Blame view

resources/views/layout/admin.blade.php 132 KB
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1
2
3
4
5
6
7
8
9
10
  <!DOCTYPE html>
  <html :class="{ 'theme-dark': dark }" x-data="data()" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>{{$title}}</title>
      <link
          href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
          rel="stylesheet"
      />
22d3318a0   Андрей Ларионов   Стили поисковой с...
11
      <link rel="stylesheet" href="{{ asset('./assets/css/tailwind.output_new.css')}}" />
622420a67   Андрей Ларионов   Расширение функци...
12
      <link rel="stylesheet" href="{{ asset('./assets/css/tabs.css')}}" />
02a1ed535   Андрей Ларионов   Первый коммит Rek...
13
14
15
16
17
      <script
          src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js"
          defer
      ></script>
      <script src="{{ asset('./assets/js/init-alpine.js') }}"></script>
8de035475   Андрей Ларионов   Создание: Структу...
18
19
20
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.css"/>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js" defer></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
21
22
23
24
25
26
27
28
29
30
      <script src="{{ asset('./assets/js/charts-lines.js') }}" defer></script>
      <script src="{{ asset('./assets/js/charts-pie.js') }}" defer></script>
  </head>
  <body>
  <div class="flex h-screen bg-gray-50 dark:bg-gray-900" :class="{ 'overflow-hidden': isSideMenuOpen }">
      <!-- Desktop sidebar -->
      <aside
          class="z-20 hidden w-64 overflow-y-auto bg-white dark:bg-gray-800 md:block flex-shrink-0"
      >
          <div class="py-4 text-gray-500 dark:text-gray-400">
f64f4890f   Андрей Ларионов   Блейды и контролл...
31
32
              <a class="ml-6 text-lg font-bold text-gray-800 dark:text-gray-200"
                  href="{{ route('admin.index') }}">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
33
34
35
36
                  Админка
              </a>
              <ul class="mt-6">
                  <li class="relative px-6 py-3">
077a30c8a   Андрей Ларионов   Таблица контента ...
37
38
39
40
                        <span
                            class="absolute inset-y-0 left-0 w-1 bg-purple-600 rounded-tr-lg rounded-br-lg"
                            aria-hidden="true"
                        ></span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
41
                      <a
e4220ec54   Андрей Ларионов   Активные ссылки меню
42
                          class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.index') ? 'dark:text-gray-100' : null }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
                          href="{{ route('admin.index') }}"
                      >
                          <svg
                              class="w-5 h-5"
                              aria-hidden="true"
                              fill="none"
                              stroke-linecap="round"
                              stroke-linejoin="round"
                              stroke-width="2"
                              viewBox="0 0 24 24"
                              stroke="currentColor"
                          >
                              <path
                                  d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"
                              ></path>
                          </svg>
                          <span class="ml-4">Главная страница</span>
                      </a>
                  </li>
              </ul>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
63

02a1ed535   Андрей Ларионов   Первый коммит Rek...
64
              <ul>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
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
              @foreach ($contents as $cont)
                  @if ($cont->url_page == "admin/users")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                              <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.users') ? 'dark:text-gray-100' : null }}"
                                  href="{{ route('admin.users') }}"
                              >
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                  ></path>
                              </svg>
                              <span class="ml-4">Пользователи</span>
                          </a>
                      </li>
                      @endif
                  @endif
  
                  @if ($cont->url_page == "admin/admin_roles")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                                  <a
                                      class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.users') ? 'dark:text-gray-100' : null }}"
                                      href="{{ route('admin.admin_roles') }}"
                                  >
                                      <svg
                                          class="w-5 h-5"
                                          aria-hidden="true"
                                          fill="none"
                                          stroke-linecap="round"
                                          stroke-linejoin="round"
                                          stroke-width="2"
                                          viewBox="0 0 24 24"
                                          stroke="currentColor"
                                      >
                                          <path
                                              d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                          ></path>
                                      </svg>
                                      <span class="ml-4">Роли администраторов</span>
                                  </a>
                      </li>
                      @endif
00652ea57   Андрей Ларионов   Оптимизация запро...
120
                  @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
121

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
122
123
124
125
                  @if ($cont->url_page == "admin/admin-users")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
077a30c8a   Андрей Ларионов   Таблица контента ...
126
                              <a
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
127
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.admin-users') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.admin-users') }}"
077a30c8a   Андрей Ларионов   Таблица контента ...
128
129
130
131
132
133
134
135
136
137
138
139
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
140
                                          d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
077a30c8a   Андрей Ларионов   Таблица контента ...
141
142
                                      ></path>
                                  </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
143
                                  <span class="ml-4">Администраторы</span>
077a30c8a   Андрей Ларионов   Таблица контента ...
144
                              </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
145
146
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
147
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
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
                  @if ($cont->url_page == "admin/employers")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.employers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.employers') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Работодатели</span>
                              </a>
                          </li>
                      @endif
                  @endif
  
                  @if ($cont->url_page == "admin/workers")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.workers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.workers') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"
                                      ></path>
                                      <path d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"></path>
                                  </svg>
                                  <span class="ml-4">Соискатели</span>
                              </a>
                          </li>
                      @endif
                  @endif
  
                  @if ($cont->url_page == "admin/ad-employers")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
01e6816d2   Андрей Ларионов   Добавление модели...
207
                          <a
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
208
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.ad-employers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.ad-employers') }}"
01e6816d2   Андрей Ларионов   Добавление модели...
209
210
211
212
213
214
215
216
217
218
219
220
                          >
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
221
                                      d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
01e6816d2   Андрей Ларионов   Добавление модели...
222
223
                                  ></path>
                              </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
224
                              <span class="ml-4">Вакансии</span>
01e6816d2   Андрей Ларионов   Добавление модели...
225
                          </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
226
227
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
228
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
229
230
231
232
233
234
                  @if ($cont->url_page == "admin/messages")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.messages') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.messages') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
235
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                              </svg>
                              <span class="ml-4">Сообщения все</span>
                          </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
252
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
                  @if ($cont->url_page == "admin/admin-messages")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.admin-messages') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.admin-messages') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                                  </svg>
                                  <span class="ml-4">Заявки на рассылку</span>
                              </a>
                          </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
276
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
277
278
279
280
281
282
                  @if ($cont->url_page == "admin/groups")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.groups') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.groups') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
283
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                  ></path>
                              </svg>
                              <span class="ml-4">Группы пользователей</span>
                          </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
302
                  @endif
bb2fb443d   Андрей Ларионов   Архитектурное доп...
303

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
                  @if ($cont->url_page == "admin/media")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                              <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.media') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.media') }}">
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Медиа</span>
                              </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
327
                  @endif
313a7a805   Андрей Ларионов   Работа с разделом...
328

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
                  @if ($cont->url_page == "admin/roles")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.roles') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.roles') }}">
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                  ></path>
                              </svg>
                              <span class="ml-4">Роли пользователей</span>
                          </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
352
                  @endif
313a7a805   Андрей Ларионов   Работа с разделом...
353

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
354
355
356
357
358
359
                  @if ($cont->url_page == "admin/basedata")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.basedata') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.basedata') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
360
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
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
396
397
398
399
400
401
402
403
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                              </svg>
                              <span class="ml-4">Базы данных</span>
                          </a>
                      </li>
                      @endif
                  @endif
  
                  @if ($cont->url_page == "admin/education")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.education.index') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.education.index') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Учебн.заведения</span>
                              </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
404
                  @endif
9b4580039   Андрей Ларионов   Медиа сущность, д...
405

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
406
407
408
409
410
411
412
                  @if ($cont->url_page == "admin/statics")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.statics') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.statics') }}"
                          >
9b4580039   Андрей Ларионов   Медиа сущность, д...
413
414
415
416
417
418
419
420
421
422
423
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
424
                                      d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"
9b4580039   Андрей Ларионов   Медиа сущность, д...
425
                                  ></path>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
426
                                  <path d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"></path>
9b4580039   Андрей Ларионов   Медиа сущность, д...
427
                              </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
428
                              <span class="ml-4">Статистика</span>
9b4580039   Андрей Ларионов   Медиа сущность, д...
429
                          </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
430
431
                      </li>
                      @endif
00652ea57   Андрей Ларионов   Оптимизация запро...
432
                  @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
433

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
434
435
436
437
438
439
                  @if ($cont->url_page == "admin/answers")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.answers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.answers') }}"
313a7a805   Андрей Ларионов   Работа с разделом...
440
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                              </svg>
                              <span class="ml-4">Модерация</span>
                          </a>
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
457
                  @endif
313a7a805   Андрей Ларионов   Работа с разделом...
458

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
459
460
461
462
                  @if ($cont->url_page == "admin/reclames")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
251aff93a   Андрей Ларионов   Изменения в меню ...
463
                          <a
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
464
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.reclames') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.reclames') }}"
251aff93a   Андрей Ларионов   Изменения в меню ...
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
                          >
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
                                  ></path>
                              </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
480
                              <span class="ml-4">Реклама</span>
251aff93a   Андрей Ларионов   Изменения в меню ...
481
                          </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
482
483
                      </li>
                      @endif
077a30c8a   Андрей Ларионов   Таблица контента ...
484
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
485
              @endforeach
bb2fb443d   Андрей Ларионов   Архитектурное доп...
486
                  <!-- Справочники -->
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
487

bb2fb443d   Андрей Ларионов   Архитектурное доп...
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
                  <li class="relative px-6 py-3" x-data="{ open1: false }">
                      <button
                          class="inline-flex items-center justify-between w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200"
                          @click="open1=!open1"
                          aria-haspopup="true">
                  <span class="inline-flex items-center">
                    <svg
                        class="w-5 h-5"
                        aria-hidden="true"
                        fill="none"
                        stroke-linecap="round"
                        stroke-linejoin="round"
                        stroke-width="2"
                        viewBox="0 0 24 24"
                        stroke="currentColor">
                      <path
                          d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"
                      ></path>
                    </svg>
                    <span class="ml-4">Справочники</span>
                  </span>
                          <svg
                              class="w-4 h-4"
                              aria-hidden="true"
                              fill="currentColor"
                              viewBox="0 0 20 20"
                          >
                              <path
                                  fill-rule="evenodd"
                                  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
                                  clip-rule="evenodd"
                              ></path>
                          </svg>
                      </button>
                      <template x-if="open1">
                          <ul
                              x-transition:enter="transition-all ease-in-out duration-300"
                              x-transition:enter-start="opacity-25 max-h-0"
                              x-transition:enter-end="opacity-100 max-h-xl"
                              x-transition:leave="transition-all ease-in-out duration-300"
                              x-transition:leave-start="opacity-100 max-h-xl"
                              x-transition:leave-end="opacity-0 max-h-0"
                              class="p-2 mt-2 space-y-2 overflow-hidden text-sm font-medium text-gray-500 rounded-md shadow-inner bg-gray-50 dark:text-gray-400 dark:bg-gray-900"
                              aria-label="submenu"
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
533
534
535
536
537
538
539
540
541
                              @foreach ($contents as $cont)
                                  @if ($cont->url_page == "admin/job-titles")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.job-titles.index') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.job-titles.index') }}">Должности</a>
                                      </li>
                                      @endif
                                  @endif
bb2fb443d   Андрей Ларионов   Архитектурное доп...
542

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
                                  @if ($cont->url_page == "admin/categories")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.categories.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.categories.index') }}">Категории вакансий</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/category-emp")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.category-emp.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.category-emp.index') }}">Категории работодателей</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/infobloks")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                           <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.infobloks.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.infobloks.index') }}">Блоки-Дипломы</a>
                                          </li>
                                      @endif
                                  @endif
                              @endforeach
f950a1227   Андрей Ларионов   Коммит обновление...
570
571
572
                              <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.position') ? 'dark:text-gray-100' : null }}">
                                  <a class="w-full" href="{{ route('admin.position') }}">Позиция</a>
                              </li>
bb2fb443d   Андрей Ларионов   Архитектурное доп...
573
574
575
                          </ul>
                      </template>
                  </li>
bb2fb443d   Андрей Ларионов   Архитектурное доп...
576
577
  
                  <!-- Редактор -->
02a1ed535   Андрей Ларионов   Первый коммит Rek...
578
579
580
581
                  <li class="relative px-6 py-3">
                      <button
                          class="inline-flex items-center justify-between w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200"
                          @click="togglePagesMenu"
bb2fb443d   Андрей Ларионов   Архитектурное доп...
582
                          aria-haspopup="true">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
583
584
585
586
587
588
589
590
591
                  <span class="inline-flex items-center">
                    <svg
                        class="w-5 h-5"
                        aria-hidden="true"
                        fill="none"
                        stroke-linecap="round"
                        stroke-linejoin="round"
                        stroke-width="2"
                        viewBox="0 0 24 24"
bb2fb443d   Андрей Ларионов   Архитектурное доп...
592
                        stroke="currentColor">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
593
594
595
596
                      <path
                          d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"
                      ></path>
                    </svg>
f64f4890f   Андрей Ларионов   Блейды и контролл...
597
                    <span class="ml-4">Редактор</span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
                  </span>
                          <svg
                              class="w-4 h-4"
                              aria-hidden="true"
                              fill="currentColor"
                              viewBox="0 0 20 20"
                          >
                              <path
                                  fill-rule="evenodd"
                                  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
                                  clip-rule="evenodd"
                              ></path>
                          </svg>
                      </button>
                      <template x-if="isPagesMenuOpen">
                          <ul
                              x-transition:enter="transition-all ease-in-out duration-300"
                              x-transition:enter-start="opacity-25 max-h-0"
                              x-transition:enter-end="opacity-100 max-h-xl"
                              x-transition:leave="transition-all ease-in-out duration-300"
                              x-transition:leave-start="opacity-100 max-h-xl"
                              x-transition:leave-end="opacity-0 max-h-0"
                              class="p-2 mt-2 space-y-2 overflow-hidden text-sm font-medium text-gray-500 rounded-md shadow-inner bg-gray-50 dark:text-gray-400 dark:bg-gray-900"
                              aria-label="submenu"
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
623
624
625
626
627
628
629
630
631
                              @foreach ($contents as $cont)
                                  @if ($cont->url_page == "admin/editor-site")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-site') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.editor-site') }}">Редактор сайта</a>
                                          </li>
                                      @endif
                                  @endif
251aff93a   Андрей Ларионов   Изменения в меню ...
632

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
                                  @if ($cont->url_page == "admin/edit-blocks")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.edit-blocks') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.edit-blocks') }}">Шапка-футер сайта</a>
                                      </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/editor-seo")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-seo') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.editor-seo') }}">SEO сайта</a>
                                      </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/editor-pages")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-pages') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.editor-pages') }}">Редактор страниц</a>
                                      </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/job-titles-main")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.job-titles-main') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.job-titles-main') }}">Должности на главной</a>
                                      </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/employers-main")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.employers-main') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.employers-main') }}">Работодатели на главной</a>
                                      </li>
                                      @endif
                                  @endif
  
                              @endforeach
02a1ed535   Андрей Ларионов   Первый коммит Rek...
679
680
681
682
                          </ul>
                      </template>
                  </li>
              </ul>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
683

02a1ed535   Андрей Ларионов   Первый коммит Rek...
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
              <!--<div class="px-6 my-6">
                  <button
                      class="flex items-center justify-between w-full px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"
                  >
                      Create account
                      <span class="ml-2" aria-hidden="true">+</span>
                  </button>
              </div>-->
          </div>
      </aside>
      <!-- Mobile sidebar -->
      <!-- Backdrop -->
      <div
          x-show="isSideMenuOpen"
          x-transition:enter="transition ease-in-out duration-150"
          x-transition:enter-start="opacity-0"
          x-transition:enter-end="opacity-100"
          x-transition:leave="transition ease-in-out duration-150"
          x-transition:leave-start="opacity-100"
          x-transition:leave-end="opacity-0"
          class="fixed inset-0 z-10 flex items-end bg-black bg-opacity-50 sm:items-center sm:justify-center"
      ></div>
      <aside
          class="fixed inset-y-0 z-20 flex-shrink-0 w-64 mt-16 overflow-y-auto bg-white dark:bg-gray-800 md:hidden"
          x-show="isSideMenuOpen"
          x-transition:enter="transition ease-in-out duration-150"
          x-transition:enter-start="opacity-0 transform -translate-x-20"
          x-transition:enter-end="opacity-100"
          x-transition:leave="transition ease-in-out duration-150"
          x-transition:leave-start="opacity-100"
          x-transition:leave-end="opacity-0 transform -translate-x-20"
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
715
716
717
718
719
720
721
722
723
724
725
          @click.away="closeSideMenu"
          @keydown.escape="closeSideMenu"
      >
          <div class="py-4 text-gray-500 dark:text-gray-400">
              <a
                  class="ml-6 text-lg font-bold text-gray-800 dark:text-gray-200"
                  href="{{ route('admin.index') }}"
              >
                  Админка
              </a>
              <ul class="mt-6">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
726
                  <li class="relative px-6 py-3">
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
727
728
729
730
                <span
                    class="absolute inset-y-0 left-0 w-1 bg-purple-600 rounded-tr-lg rounded-br-lg"
                    aria-hidden="true"
                ></span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
731
                      <a
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
732
                          class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.index') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.index') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
733
734
735
736
737
738
739
740
741
742
743
744
                      >
                          <svg
                              class="w-5 h-5"
                              aria-hidden="true"
                              fill="none"
                              stroke-linecap="round"
                              stroke-linejoin="round"
                              stroke-width="2"
                              viewBox="0 0 24 24"
                              stroke="currentColor"
                          >
                              <path
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
745
                                  d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
746
747
                              ></path>
                          </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
748
                          <span class="ml-4">Главная страница</span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
749
750
                      </a>
                  </li>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
              </ul>
              <ul>
                  @foreach ($contents as $cont)
                      @if ($cont->url_page == "admin/users")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                              <li class="relative px-6 py-3">
                                  <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.users') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.users') }}">
                                      <svg
                                          class="w-5 h-5"
                                          aria-hidden="true"
                                          fill="none"
                                          stroke-linecap="round"
                                          stroke-linejoin="round"
                                          stroke-width="2"
                                          viewBox="0 0 24 24"
                                          stroke="currentColor"
                                      >
                                          <path
                                              d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                          ></path>
                                      </svg>
                                      <span class="ml-4">Пользователи</span>
                                  </a>
                              </li>
                          @endif
                      @endif
313a7a805   Андрей Ларионов   Работа с разделом...
778

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
                      @if ($cont->url_page == "admin/admin-users")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                              <li class="relative px-6 py-3">
                                      <a
                                          class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.admin-users') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.admin-users') }}"
                                      >
                                          <svg
                                              class="w-5 h-5"
                                              aria-hidden="true"
                                              fill="none"
                                              stroke-linecap="round"
                                              stroke-linejoin="round"
                                              stroke-width="2"
                                              viewBox="0 0 24 24"
                                              stroke="currentColor"
                                          >
                                              <path
                                                  d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
                                              ></path>
                                          </svg>
                                          <span class="ml-4">Администраторы</span>
                                      </a>
                              </li>
                          @endif
                      @endif
  
                      @if ($cont->url_page == "admin/employers")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.employers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.employers') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Работодатели</span>
                              </a>
                          </li>
                          @endif
                      @endif
  
                      @if ($cont->url_page == "admin/workers")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.workers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.workers') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"
                                      ></path>
                                      <path d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"></path>
                                  </svg>
                                  <span class="ml-4">Соискатели</span>
                              </a>
                          </li>
                          @endif
                      @endif
  
                      @if ($cont->url_page == "admin/ad-employers")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.ad-employers') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.ad-employers') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Вакансии</span>
                              </a>
                          </li>
                         @endif
                      @endif
  
                      @if ($cont->url_page == "admin/messages")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                              <a
                                  class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.messages') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.messages') }}"
                              >
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                                  </svg>
                                  <span class="ml-4">Сообщения все</span>
                              </a>
                          </li>
                          @endif
                      @endif
  
                      @if ($cont->url_page == "admin/admin-messages")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                                  <a
                                      class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.admin-messages') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.admin-messages') }}"
                                  >
                                      <svg
                                          class="w-5 h-5"
                                          aria-hidden="true"
                                          fill="none"
                                          stroke-linecap="round"
                                          stroke-linejoin="round"
                                          stroke-width="2"
                                          viewBox="0 0 24 24"
                                          stroke="currentColor"
                                      >
                                          <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                                      </svg>
                                      <span class="ml-4">Заявки на рассылку</span>
                                  </a>
                          </li>
                          @endif
                      @endif
  
                      @if ($cont->url_page == "admin/groups")
                          @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                               (($cont->is_manager == 1) && ($is_manager == 1)))
                              <li class="relative px-6 py-3">
                              <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.groups') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.groups') }}">
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="none"
                                      stroke-linecap="round"
                                      stroke-linejoin="round"
                                      stroke-width="2"
                                      viewBox="0 0 24 24"
                                      stroke="currentColor"
                                  >
                                      <path
                                          d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                      ></path>
                                  </svg>
                                  <span class="ml-4">Группы пользователей</span>
                              </a>
                          </li>
                        @endif
                  @endif
  
                  @if ($cont->url_page == "admin/media")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
                          <li class="relative px-6 py-3">
                                  <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.media') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.media') }}">
                                      <svg
                                          class="w-5 h-5"
                                          aria-hidden="true"
                                          fill="none"
                                          stroke-linecap="round"
                                          stroke-linejoin="round"
                                          stroke-width="2"
                                          viewBox="0 0 24 24"
                                          stroke="currentColor"
                                      >
                                          <path
                                              d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                          ></path>
                                      </svg>
                                      <span class="ml-4">Медиа</span>
                                  </a>
                          </li>
                      @endif
                  @endif
  
                  @if ($cont->url_page == "admin/roles")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
abc449250   Андрей Ларионов   Блейд слоя
991

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
992
993
                      <li class="relative px-6 py-3">
                          <a class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.roles') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.roles') }}">
313a7a805   Андрей Ларионов   Работа с разделом...
994
995
996
997
998
999
1000
1001
1002
1003
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1004
1005
1006
                                  <path
                                      d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
                                  ></path>
313a7a805   Андрей Ларионов   Работа с разделом...
1007
                              </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1008
                              <span class="ml-4">Роли пользователей</span>
313a7a805   Андрей Ларионов   Работа с разделом...
1009
                          </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1010
1011
1012
                      </li>
                      @endif
                  @endif
313a7a805   Андрей Ларионов   Работа с разделом...
1013

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1014
1015
1016
                  @if ($cont->url_page == "admin/basedata")
                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                           (($cont->is_manager == 1) && ($is_manager == 1)))
313a7a805   Андрей Ларионов   Работа с разделом...
1017
                      <li class="relative px-6 py-3">
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1018
1019
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.basedata') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.basedata') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1020
                          >
9b4580039   Андрей Ларионов   Медиа сущность, д...
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1031
                                  <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
9b4580039   Андрей Ларионов   Медиа сущность, д...
1032
                              </svg>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1033
                              <span class="ml-4">Базы данных</span>
9b4580039   Андрей Ларионов   Медиа сущность, д...
1034
                          </a>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1035
                      </li>
00652ea57   Андрей Ларионов   Оптимизация запро...
1036
                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1037
              @endif
313a7a805   Андрей Ларионов   Работа с разделом...
1038

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1039
1040
1041
              @if ($cont->url_page == "admin/education")
                  @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                       (($cont->is_manager == 1) && ($is_manager == 1)))
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1042
                  <li class="relative px-6 py-3">
251aff93a   Андрей Ларионов   Изменения в меню ...
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.education.index') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.education.index') }}"
                          >
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
                                  ></path>
                              </svg>
                              <span class="ml-4">Учебн.заведения</span>
                          </a>
                  </li>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1063
1064
1065
1066
1067
1068
1069
1070
1071
                  @endif
              @endif
  
              @if ($cont->url_page == "admin/statics")
                  @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                       (($cont->is_manager == 1) && ($is_manager == 1)))
                      <li class="relative px-6 py-3">
                          <a
                              class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.statics') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.statics') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1072
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="none"
                                  stroke-linecap="round"
                                  stroke-linejoin="round"
                                  stroke-width="2"
                                  viewBox="0 0 24 24"
                                  stroke="currentColor"
                              >
                                  <path
                                      d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"
                                  ></path>
                                  <path d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"></path>
                              </svg>
                              <span class="ml-4">Статистика</span>
                          </a>
                      </li>
                  @endif
              @endif
  
              @if ($cont->url_page == "admin/messages")
                  @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                       (($cont->is_manager == 1) && ($is_manager == 1)))
82a9544dc   Андрей Ларионов   Связи моделей, гр...
1097
1098
                  <li class="relative px-6 py-3">
                      <a
e4220ec54   Андрей Ларионов   Активные ссылки меню
1099
                          class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.messages') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.messages') }}"
82a9544dc   Андрей Ларионов   Связи моделей, гр...
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
                      >
                          <svg
                              class="w-5 h-5"
                              aria-hidden="true"
                              fill="none"
                              stroke-linecap="round"
                              stroke-linejoin="round"
                              stroke-width="2"
                              viewBox="0 0 24 24"
                              stroke="currentColor"
                          >
                              <path d="M4 6h16M4 10h16M4 14h16M4 18h16"></path>
                          </svg>
251aff93a   Андрей Ларионов   Изменения в меню ...
1113
1114
1115
                          <span class="ml-4">Сообщения все</span>
                      </a>
                  </li>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1116
1117
1118
1119
1120
1121
                  @endif
              @endif
  
              @if ($cont->url_page == "admin/reclames")
                  @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                       (($cont->is_manager == 1) && ($is_manager == 1)))
251aff93a   Андрей Ларионов   Изменения в меню ...
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
                  <li class="relative px-6 py-3">
                      <a
                          class="inline-flex items-center w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.reclames') ? 'dark:text-gray-100' : null }}" href="{{ route('admin.reclames') }}"
                      >
                          <svg
                              class="w-5 h-5"
                              aria-hidden="true"
                              fill="none"
                              stroke-linecap="round"
                              stroke-linejoin="round"
                              stroke-width="2"
                              viewBox="0 0 24 24"
                              stroke="currentColor"
                          >
                              <path
                                  d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
                              ></path>
                          </svg>
                          <span class="ml-4">Реклама</span>
82a9544dc   Андрей Ларионов   Связи моделей, гр...
1141
1142
                      </a>
                  </li>
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1143
1144
1145
                  @endif
              @endif
              @endforeach
bb2fb443d   Андрей Ларионов   Архитектурное доп...
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
                  <!-- Справочники -->
                  <li class="relative px-6 py-3" x-data="{ open2: false }">
                      <button
                          class="inline-flex items-center justify-between w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200"
                          @click="open2=!open2"
                          aria-haspopup="true">
                  <span class="inline-flex items-center">
                    <svg
                        class="w-5 h-5"
                        aria-hidden="true"
                        fill="none"
                        stroke-linecap="round"
                        stroke-linejoin="round"
                        stroke-width="2"
                        viewBox="0 0 24 24"
                        stroke="currentColor">
                      <path
                          d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"
                      ></path>
                    </svg>
                    <span class="ml-4">Справочники</span>
                  </span>
                          <svg
                              class="w-4 h-4"
                              aria-hidden="true"
                              fill="currentColor"
                              viewBox="0 0 20 20"
                          >
                              <path
                                  fill-rule="evenodd"
                                  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
                                  clip-rule="evenodd"
                              ></path>
                          </svg>
                      </button>
                      <template x-if="open2">
                          <ul
                              x-transition:enter="transition-all ease-in-out duration-300"
                              x-transition:enter-start="opacity-25 max-h-0"
                              x-transition:enter-end="opacity-100 max-h-xl"
                              x-transition:leave="transition-all ease-in-out duration-300"
                              x-transition:leave-start="opacity-100 max-h-xl"
                              x-transition:leave-end="opacity-0 max-h-0"
                              class="p-2 mt-2 space-y-2 overflow-hidden text-sm font-medium text-gray-500 rounded-md shadow-inner bg-gray-50 dark:text-gray-400 dark:bg-gray-900"
                              aria-label="submenu"
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
                              @foreach ($contents as $cont)
                                  @if ($cont->url_page == "admin/job-titles")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.job-titles.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.job-titles.index') }}">Должности</a>
                                          </li>
                                      @endif
                                 @endif
  
                                  @if ($cont->url_page == "admin/categories")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.categories.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.categories.index') }}">Категории вакансий</a>
                                          </li>
                                      @endif
                                  @endif
bb2fb443d   Андрей Ларионов   Архитектурное доп...
1210

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
                                  @if ($cont->url_page == "admin/category-emp")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.category-emp.index') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.category-emp.index') }}">Категории работодателей</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/infobloks")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.infobloks.index') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.infobloks.index') }}">Блоки-Дипломы</a>
                                      </li>
                                      @endif
                                  @endif
f950a1227   Андрей Ларионов   Коммит обновление...
1228
1229
1230
1231
1232
1233
1234
1235
1236
  
                                  @if ($cont->url_page == "admin/position")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.position') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.position') }}">Позиция</a>
                                          </li>
                                      @endif
                                  @endif
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1237
                              @endforeach
bb2fb443d   Андрей Ларионов   Архитектурное доп...
1238
1239
1240
                          </ul>
                      </template>
                  </li>
bb2fb443d   Андрей Ларионов   Архитектурное доп...
1241
                  <!-- Редактор -->
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
                  <li class="relative px-6 py-3">
                      <button
                          class="inline-flex items-center justify-between w-full text-sm font-semibold transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200"
                          @click="togglePagesMenu"
                          aria-haspopup="true"
                      >
                  <span class="inline-flex items-center">
                    <svg
                        class="w-5 h-5"
                        aria-hidden="true"
                        fill="none"
                        stroke-linecap="round"
                        stroke-linejoin="round"
                        stroke-width="2"
                        viewBox="0 0 24 24"
                        stroke="currentColor"
                    >
                      <path
                          d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"
                      ></path>
                    </svg>
f64f4890f   Андрей Ларионов   Блейды и контролл...
1263
                    <span class="ml-4">Редактор</span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
                  </span>
                          <svg
                              class="w-4 h-4"
                              aria-hidden="true"
                              fill="currentColor"
                              viewBox="0 0 20 20"
                          >
                              <path
                                  fill-rule="evenodd"
                                  d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
                                  clip-rule="evenodd"
                              ></path>
                          </svg>
                      </button>
                      <template x-if="isPagesMenuOpen">
                          <ul
                              x-transition:enter="transition-all ease-in-out duration-300"
                              x-transition:enter-start="opacity-25 max-h-0"
                              x-transition:enter-end="opacity-100 max-h-xl"
                              x-transition:leave="transition-all ease-in-out duration-300"
                              x-transition:leave-start="opacity-100 max-h-xl"
                              x-transition:leave-end="opacity-0 max-h-0"
                              class="p-2 mt-2 space-y-2 overflow-hidden text-sm font-medium text-gray-500 rounded-md shadow-inner bg-gray-50 dark:text-gray-400 dark:bg-gray-900"
                              aria-label="submenu"
                          >
6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
                              @foreach ($contents as $cont)
                                  @if ($cont->url_page == "admin/editor-site")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-site') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.editor-site') }}">Редактор сайта</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/edit-blocks")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.edit-blocks') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.edit-blocks') }}">Шапка-футер сайта</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/editor-seo")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                          <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-seo') ? 'dark:text-gray-100' : null }}">
                                              <a class="w-full" href="{{ route('admin.editor-seo') }}">SEO сайта</a>
                                          </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/editor-pages")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.editor-pages') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.editor-pages') }}">Редактор страниц</a>
                                      </li>
                                      @endif
                                  @endif
  
                                  @if ($cont->url_page == "admin/job-titles-main")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.job-titles-main') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.job-titles-main') }}">Должности на главной</a>
                                      </li>
                                      @endif
                                   @endif
  
                                  @if ($cont->url_page == "admin/employers-main")
                                      @if ((($cont->is_admin == 1) && ($admin == 1)) ||
                                           (($cont->is_manager == 1) && ($is_manager == 1)))
                                      <li class="px-2 py-1 transition-colors duration-150 hover:text-gray-800 dark:hover:text-gray-200 {{ Request::routeIs('admin.employers-main') ? 'dark:text-gray-100' : null }}">
                                          <a class="w-full" href="{{ route('admin.employers-main') }}">Работодатели на главной</a>
                                      </li>
                                      @endif
                                  @endif
f64f4890f   Андрей Ларионов   Блейды и контролл...
1343

6a2a004b1   Андрей Ларионов   Роли просмотра ст...
1344
                              @endforeach
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
                          </ul>
                      </template>
                  </li>
              </ul>
              <!--<div class="px-6 my-6">
                  <button class="flex items-center justify-between px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
                      Create account
                      <span class="ml-2" aria-hidden="true">+</span>
                  </button>
              </div>-->
          </div>
      </aside>
      <div class="flex flex-col flex-1 w-full">
          <header class="z-10 py-4 bg-white shadow-md dark:bg-gray-800">
              <div
                  class="container flex items-center justify-between h-full px-6 mx-auto text-purple-600 dark:text-purple-300"
              >
                  <!-- Mobile hamburger -->
                  <button
                      class="p-1 mr-5 -ml-1 rounded-md md:hidden focus:outline-none focus:shadow-outline-purple"
                      @click="toggleSideMenu"
                      aria-label="Menu"
                  >
                      <svg
                          class="w-6 h-6"
                          aria-hidden="true"
                          fill="currentColor"
                          viewBox="0 0 20 20"
                      >
                          <path
                              fill-rule="evenodd"
                              d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
                              clip-rule="evenodd"
                          ></path>
                      </svg>
                  </button>
                  <!-- Search input -->
                  <div class="flex justify-center flex-1 lg:mr-32">
                      <div
                          class="relative w-full max-w-xl mr-6 focus-within:text-purple-500"
                      >
bb2fb443d   Андрей Ларионов   Архитектурное доп...
1386
1387
  
                          @yield('search')
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
                      </div>
                  </div>
                  <ul class="flex items-center flex-shrink-0 space-x-6">
                      <!-- Theme toggler -->
                      <li class="flex">
                          <button
                              class="rounded-md focus:outline-none focus:shadow-outline-purple"
                              @click="toggleTheme"
                              aria-label="Toggle color mode"
                          >
                              <template x-if="!dark">
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="currentColor"
                                      viewBox="0 0 20 20"
                                  >
                                      <path
                                          d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"
                                      ></path>
                                  </svg>
                              </template>
                              <template x-if="dark">
                                  <svg
                                      class="w-5 h-5"
                                      aria-hidden="true"
                                      fill="currentColor"
                                      viewBox="0 0 20 20"
                                  >
                                      <path
                                          fill-rule="evenodd"
                                          d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"
                                          clip-rule="evenodd"
                                      ></path>
                                  </svg>
                              </template>
                          </button>
                      </li>
                      <!-- Notifications menu -->
                      <li class="relative">
                          <button
                              class="relative align-middle rounded-md focus:outline-none focus:shadow-outline-purple"
                              @click="toggleNotificationsMenu"
                              @keydown.escape="closeNotificationsMenu"
                              aria-label="Notifications"
                              aria-haspopup="true"
                          >
                              <svg
                                  class="w-5 h-5"
                                  aria-hidden="true"
                                  fill="currentColor"
                                  viewBox="0 0 20 20"
                              >
                                  <path
                                      d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z"
                                  ></path>
                              </svg>
                              <!-- Notification badge -->
                              <span
                                  aria-hidden="true"
                                  class="absolute top-0 right-0 inline-block w-3 h-3 transform translate-x-1 -translate-y-1 bg-red-600 border-2 border-white rounded-full dark:border-gray-800"
                              ></span>
                          </button>
                          <template x-if="isNotificationsMenuOpen">
                              <ul
                                  x-transition:leave="transition ease-in duration-150"
                                  x-transition:leave-start="opacity-100"
                                  x-transition:leave-end="opacity-0"
                                  @click.away="closeNotificationsMenu"
                                  @keydown.escape="closeNotificationsMenu"
                                  class="absolute right-0 w-56 p-2 mt-2 space-y-2 text-gray-600 bg-white border border-gray-100 rounded-md shadow-md dark:text-gray-300 dark:border-gray-700 dark:bg-gray-700"
                              >
                                  <li class="flex">
                                      <a
                                          class="inline-flex items-center justify-between w-full px-2 py-1 text-sm font-semibold transition-colors duration-150 rounded-md hover:bg-gray-100 hover:text-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200"
e688e0d8a   Андрей Ларионов   Статистика работн...
1463
                                          href="{{ route('admin.admin-messages') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1464
1465
                                      >
                                          <span>Сообщения</span>
f060aa75b   Андрей Ларионов   Счетчик сообщений...
1466
                                          @if($MsgCount > 0)
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1467
1468
1469
                                          <span
                                              class="inline-flex items-center justify-center px-2 py-1 text-xs font-bold leading-none text-red-600 bg-red-100 rounded-full dark:text-red-100 dark:bg-red-600"
                                          >
f060aa75b   Андрей Ларионов   Счетчик сообщений...
1470
1471
1472
1473
  
                                              {{ $MsgCount }}
                                          </span>
                                          @endif
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1474
1475
                                      </a>
                                  </li>
e688e0d8a   Андрей Ларионов   Статистика работн...
1476
                                  <!--<li class="flex">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1477
1478
1479
1480
1481
1482
                                      <a
                                          class="inline-flex items-center justify-between w-full px-2 py-1 text-sm font-semibold transition-colors duration-150 rounded-md hover:bg-gray-100 hover:text-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200"
                                          href="#"
                                      >
                                          <span>Логи</span>
                                      </a>
e688e0d8a   Андрей Ларионов   Статистика работн...
1483
                                  </li>-->
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
                              </ul>
                          </template>
                      </li>
                      <!-- Profile menu -->
                      <li class="relative">
                          <button
                              class="align-middle rounded-full focus:shadow-outline-purple focus:outline-none"
                              @click="toggleProfileMenu"
                              @keydown.escape="closeProfileMenu"
                              aria-label="Account"
                              aria-haspopup="true"
                          >
                              <img
                                  class="object-cover w-8 h-8 rounded-full"
                                  src="{{ asset('assets/img/profile.jpg') }}"
                                  alt=""
                                  aria-hidden="true"
                              />
                          </button>
                          <template x-if="isProfileMenuOpen">
                              <ul
                                  x-transition:leave="transition ease-in duration-150"
                                  x-transition:leave-start="opacity-100"
                                  x-transition:leave-end="opacity-0"
                                  @click.away="closeProfileMenu"
                                  @keydown.escape="closeProfileMenu"
                                  class="absolute right-0 w-56 p-2 mt-2 space-y-2 text-gray-600 bg-white border border-gray-100 rounded-md shadow-md dark:border-gray-700 dark:text-gray-300 dark:bg-gray-700"
                                  aria-label="submenu"
                              >
                                  <li class="flex">
                                      <a
                                          class="inline-flex items-center w-full px-2 py-1 text-sm font-semibold transition-colors duration-150 rounded-md hover:bg-gray-100 hover:text-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200"
7c1e05248   Андрей Ларионов   Формы настройки с...
1516
                                          href="{{ route('admin.profile') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
                                      >
                                          <svg
                                              class="w-4 h-4 mr-3"
                                              aria-hidden="true"
                                              fill="none"
                                              stroke-linecap="round"
                                              stroke-linejoin="round"
                                              stroke-width="2"
                                              viewBox="0 0 24 24"
                                              stroke="currentColor"
                                          >
                                              <path
                                                  d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"
                                              ></path>
                                          </svg>
                                          <span>Профиль</span>
                                      </a>
                                  </li>
                                  <li class="flex">
                                      <a
                                          class="inline-flex items-center w-full px-2 py-1 text-sm font-semibold transition-colors duration-150 rounded-md hover:bg-gray-100 hover:text-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200"
7c1e05248   Андрей Ларионов   Формы настройки с...
1538
                                          href="{{ route('admin.config') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
                                      >
                                          <svg
                                              class="w-4 h-4 mr-3"
                                              aria-hidden="true"
                                              fill="none"
                                              stroke-linecap="round"
                                              stroke-linejoin="round"
                                              stroke-width="2"
                                              viewBox="0 0 24 24"
                                              stroke="currentColor"
                                          >
                                              <path
                                                  d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"
                                              ></path>
                                              <path d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
                                          </svg>
                                          <span>Настройки</span>
                                      </a>
                                  </li>
                                  <li class="flex">
                                      <a
                                          class="inline-flex items-center w-full px-2 py-1 text-sm font-semibold transition-colors duration-150 rounded-md hover:bg-gray-100 hover:text-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200"
                                          href="{{ route('admin.logout') }}"
                                      >
                                          <svg
                                              class="w-4 h-4 mr-3"
                                              aria-hidden="true"
                                              fill="none"
                                              stroke-linecap="round"
                                              stroke-linejoin="round"
                                              stroke-width="2"
                                              viewBox="0 0 24 24"
                                              stroke="currentColor"
                                          >
                                              <path
                                                  d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1"
                                              ></path>
                                          </svg>
                                          <span>Выход</span>
                                      </a>
                                  </li>
                              </ul>
                          </template>
                      </li>
                  </ul>
              </div>
          </header>
          <main class="h-full overflow-y-auto">
              <div class="container px-6 mx-auto grid">
                  <h2
                      class="my-6 text-2xl font-semibold text-gray-700 dark:text-gray-200"
                  >
                      {{$title}}
                  </h2>
                  <!-- CTA -->
                  <a
                      class="flex items-center justify-between p-4 mb-8 text-sm font-semibold text-purple-100 bg-purple-600 rounded-lg shadow-md focus:outline-none focus:shadow-outline-purple"
8de035475   Андрей Ларионов   Создание: Структу...
1596
                      href="{{ route('admin.admin-users') }}"
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
                  >
                      <div class="flex items-center">
                          <svg
                              class="w-5 h-5 mr-2"
                              fill="currentColor"
                              viewBox="0 0 20 20"
                          >
                              <path
                                  d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"
                              ></path>
                          </svg>
32cbe7736   Андрей Ларионов   Обновление блейдо...
1608
                          <span>Контент для админов</span>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1609
1610
1611
                      </div>
                      <span>Список админов &RightArrow;</span>
                  </a>
c84db5243   Андрей Ларионов   Форма редактирова...
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
                  @if ($message = Session::get('success'))
                      <section>
                          <div class="alert alert-success alert-dismissible mt-0" role="alert">
                              <button type="button" class="close" data-dismiss="alert" aria-label="Закрыть">
                                  <span aria-hidden="true">&times;</span>
                              </button>
                              {{ $message }}
                          </div>
                      </section>
                  @endif
  
                  @if ($errors->any())
                      <section>
                          <div class="alert alert-danger alert-dismissible mt-4" role="alert">
                              <button type="button" class="close" data-dismiss="alert" aria-label="Закрыть">
                                  <span aria-hidden="true">&times;</span>
                              </button>
                              <ul class="mb-0">
                                  @foreach ($errors->all() as $error)
                                      <li>{{ $error }}</li>
                                  @endforeach
                              </ul>
                          </div>
                      </section>
                @endif
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
                 @yield('content')
  
                  <!-- Cards
                  <div class="grid gap-6 mb-8 md:grid-cols-2 xl:grid-cols-4">
  
                      <div
                          class="flex items-center p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <div
                              class="p-3 mr-4 text-orange-500 bg-orange-100 rounded-full dark:text-orange-100 dark:bg-orange-500"
                          >
                              <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
                                  <path
                                      d="M13 6a3 3 0 11-6 0 3 3 0 016 0zM18 8a2 2 0 11-4 0 2 2 0 014 0zM14 15a4 4 0 00-8 0v3h8v-3zM6 8a2 2 0 11-4 0 2 2 0 014 0zM16 18v-3a5.972 5.972 0 00-.75-2.906A3.005 3.005 0 0119 15v3h-3zM4.75 12.094A5.973 5.973 0 004 15v3H1v-3a3 3 0 013.75-2.906z"
                                  ></path>
                              </svg>
                          </div>
                          <div>
                              <p
                                  class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400"
                              >
                                  Total clients
                              </p>
                              <p
                                  class="text-lg font-semibold text-gray-700 dark:text-gray-200"
                              >
                                  6389
                              </p>
                          </div>
                      </div>
  
                      <div
                          class="flex items-center p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <div
                              class="p-3 mr-4 text-green-500 bg-green-100 rounded-full dark:text-green-100 dark:bg-green-500"
                          >
                              <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
                                  <path
                                      fill-rule="evenodd"
                                      d="M4 4a2 2 0 00-2 2v4a2 2 0 002 2V6h10a2 2 0 00-2-2H4zm2 6a2 2 0 012-2h8a2 2 0 012 2v4a2 2 0 01-2 2H8a2 2 0 01-2-2v-4zm6 4a2 2 0 100-4 2 2 0 000 4z"
                                      clip-rule="evenodd"
                                  ></path>
                              </svg>
                          </div>
                          <div>
                              <p
                                  class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400"
                              >
                                  Account balance
                              </p>
                              <p
                                  class="text-lg font-semibold text-gray-700 dark:text-gray-200"
                              >
                                  $ 46,760.89
                              </p>
                          </div>
                      </div>
  
                      <div
                          class="flex items-center p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <div
                              class="p-3 mr-4 text-blue-500 bg-blue-100 rounded-full dark:text-blue-100 dark:bg-blue-500"
                          >
                              <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
                                  <path
                                      d="M3 1a1 1 0 000 2h1.22l.305 1.222a.997.997 0 00.01.042l1.358 5.43-.893.892C3.74 11.846 4.632 14 6.414 14H15a1 1 0 000-2H6.414l1-1H14a1 1 0 00.894-.553l3-6A1 1 0 0017 3H6.28l-.31-1.243A1 1 0 005 1H3zM16 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 18a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"
                                  ></path>
                              </svg>
                          </div>
                          <div>
                              <p
                                  class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400"
                              >
                                  New sales
                              </p>
                              <p
                                  class="text-lg font-semibold text-gray-700 dark:text-gray-200"
                              >
                                  376
                              </p>
                          </div>
                      </div>
  
                      <div
                          class="flex items-center p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <div
                              class="p-3 mr-4 text-teal-500 bg-teal-100 rounded-full dark:text-teal-100 dark:bg-teal-500"
                          >
                              <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
                                  <path
                                      fill-rule="evenodd"
                                      d="M18 5v8a2 2 0 01-2 2h-5l-5 4v-4H4a2 2 0 01-2-2V5a2 2 0 012-2h12a2 2 0 012 2zM7 8H5v2h2V8zm2 0h2v2H9V8zm6 0h-2v2h2V8z"
                                      clip-rule="evenodd"
                                  ></path>
                              </svg>
                          </div>
                          <div>
                              <p
                                  class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400"
                              >
                                  Pending contacts
                              </p>
                              <p
                                  class="text-lg font-semibold text-gray-700 dark:text-gray-200"
                              >
                                  35
                              </p>
                          </div>
                      </div>
                  </div>
                  -->
                  <!-- New Table
                  <div class="w-full overflow-hidden rounded-lg shadow-xs">
                      <div class="w-full overflow-x-auto">
                          <table class="w-full whitespace-no-wrap">
                              <thead>
                              <tr
                                  class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800"
                              >
                                  <th class="px-4 py-3">Client</th>
                                  <th class="px-4 py-3">Amount</th>
                                  <th class="px-4 py-3">Status</th>
                                  <th class="px-4 py-3">Date</th>
                              </tr>
                              </thead>
                              <tbody
                                  class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800"
                              >
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/flagged/photo-1570612861542-284f4c12e75f?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Hans Burger</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  10x Developer
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&facepad=3&fit=facearea&s=707b9c33066bf8808c934c8ab394dff6"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Jolina Angelie</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Unemployed
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 369.95
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-orange-700 bg-orange-100 rounded-full dark:text-white dark:bg-orange-600"
                          >
                            Pending
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1551069613-1904dbdcda11?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Sarah Curry</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Designer
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 86.00
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-red-700 bg-red-100 rounded-full dark:text-red-100 dark:bg-red-700"
                          >
                            Denied
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1551006917-3b4c078c47c9?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Rulia Joberts</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Actress
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 1276.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1546456073-6712f79251bb?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Wenzel Dashington</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Actor
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-gray-700 bg-gray-100 rounded-full dark:text-gray-100 dark:bg-gray-700"
                          >
                            Expired
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1502720705749-871143f0e671?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&s=b8377ca9f985d80264279f277f3a67f5"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Dave Li</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Influencer
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Maria Ramovic</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Runner
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/photo-1566411520896-01e7ca4726af?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Hitney Wouston</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  Singer
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
  
                              <tr class="text-gray-700 dark:text-gray-400">
                                  <td class="px-4 py-3">
                                      <div class="flex items-center text-sm">
  
                                          <div
                                              class="relative hidden w-8 h-8 mr-3 rounded-full md:block"
                                          >
                                              <img
                                                  class="object-cover w-full h-full rounded-full"
                                                  src="https://images.unsplash.com/flagged/photo-1570612861542-284f4c12e75f?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
                                                  alt=""
                                                  loading="lazy"
                                              />
                                              <div
                                                  class="absolute inset-0 rounded-full shadow-inner"
                                                  aria-hidden="true"
                                              ></div>
                                          </div>
                                          <div>
                                              <p class="font-semibold">Hans Burger</p>
                                              <p class="text-xs text-gray-600 dark:text-gray-400">
                                                  10x Developer
                                              </p>
                                          </div>
                                      </div>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      $ 863.45
                                  </td>
                                  <td class="px-4 py-3 text-xs">
                          <span
                              class="px-2 py-1 font-semibold leading-tight text-green-700 bg-green-100 rounded-full dark:bg-green-700 dark:text-green-100"
                          >
                            Approved
                          </span>
                                  </td>
                                  <td class="px-4 py-3 text-sm">
                                      6/10/2020
                                  </td>
                              </tr>
                              </tbody>
                          </table>
                      </div>
                      <div
                          class="grid px-4 py-3 text-xs font-semibold tracking-wide text-gray-500 uppercase border-t dark:border-gray-700 bg-gray-50 sm:grid-cols-9 dark:text-gray-400 dark:bg-gray-800"
                      >
                  <span class="flex items-center col-span-3">
                    Showing 21-30 of 100
                  </span>
                          <span class="col-span-2"></span>
  
                          <span class="flex col-span-4 mt-2 sm:mt-auto sm:justify-end">
                    <nav aria-label="Table navigation">
                      <ul class="inline-flex items-center">
                        <li>
                          <button
                              class="px-3 py-1 rounded-md rounded-l-lg focus:outline-none focus:shadow-outline-purple"
                              aria-label="Previous"
                          >
                            <svg
                                aria-hidden="true"
                                class="w-4 h-4 fill-current"
                                viewBox="0 0 20 20"
                            >
                              <path
                                  d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
                                  clip-rule="evenodd"
                                  fill-rule="evenodd"
                              ></path>
                            </svg>
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            1
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            2
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 text-white transition-colors duration-150 bg-purple-600 border border-r-0 border-purple-600 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            3
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            4
                          </button>
                        </li>
                        <li>
                          <span class="px-3 py-1">...</span>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            8
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple"
                          >
                            9
                          </button>
                        </li>
                        <li>
                          <button
                              class="px-3 py-1 rounded-md rounded-r-lg focus:outline-none focus:shadow-outline-purple"
                              aria-label="Next"
                          >
                            <svg
                                class="w-4 h-4 fill-current"
                                aria-hidden="true"
                                viewBox="0 0 20 20"
                            >
                              <path
                                  d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
                                  clip-rule="evenodd"
                                  fill-rule="evenodd"
                              ></path>
                            </svg>
                          </button>
                        </li>
                      </ul>
                    </nav>
                  </span>
                      </div>
                  </div>
                  -->
                  <!-- Charts -->
                  <!--
                  <h2 class="my-6 text-2xl font-semibold text-gray-700 dark:text-gray-200">
                      Графики
                  </h2>
                  <div class="grid gap-6 mb-8 md:grid-cols-2">
                      <div
                          class="min-w-0 p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <h4 class="mb-4 font-semibold text-gray-800 dark:text-gray-300">
                              Revenue
                          </h4>
                          <canvas id="pie"></canvas>
                          <div
                              class="flex justify-center mt-4 space-x-3 text-sm text-gray-600 dark:text-gray-400"
                          >
  
                              <div class="flex items-center">
                      <span
                          class="inline-block w-3 h-3 mr-1 bg-blue-500 rounded-full"
                      ></span>
                                  <span>Shirts</span>
                              </div>
                              <div class="flex items-center">
                      <span
                          class="inline-block w-3 h-3 mr-1 bg-teal-600 rounded-full"
                      ></span>
                                  <span>Shoes</span>
                              </div>
                              <div class="flex items-center">
                      <span
                          class="inline-block w-3 h-3 mr-1 bg-purple-600 rounded-full"
                      ></span>
                                  <span>Bags</span>
                              </div>
                          </div>
                      </div>
                      <div
                          class="min-w-0 p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
                      >
                          <h4 class="mb-4 font-semibold text-gray-800 dark:text-gray-300">
                              Traffic
                          </h4>
                          <canvas id="line"></canvas>
                          <div
                              class="flex justify-center mt-4 space-x-3 text-sm text-gray-600 dark:text-gray-400"
                          >
  
                              <div class="flex items-center">
                      <span
                          class="inline-block w-3 h-3 mr-1 bg-teal-600 rounded-full"
                      ></span>
                                  <span>Organic</span>
                              </div>
                              <div class="flex items-center">
                      <span
                          class="inline-block w-3 h-3 mr-1 bg-purple-600 rounded-full"
                      ></span>
                                  <span>Paid</span>
                              </div>
                          </div>
                      </div>
                  </div>
                  -->
              </div>
          </main>
      </div>
  </div>
01e6816d2   Андрей Ларионов   Добавление модели...
2305
  @yield('modal')
02a1ed535   Андрей Ларионов   Первый коммит Rek...
2306
  </body>
8de035475   Андрей Ларионов   Создание: Структу...
2307
  @yield('script')
02a1ed535   Андрей Ларионов   Первый коммит Rek...
2308
  </html>