Blame view

resources/views/admin/users/index_bd_ajax.blade.php 6.54 KB
313a7a805   Андрей Ларионов   Работа с разделом...
1
2
3
4
5
6
7
8
          <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">№</th>
                      <th class="px-4 py-3">Имя</th>
9b4580039   Андрей Ларионов   Медиа сущность, д...
9
10
11
                      <th class="px-4 py-3">Email/телефон</th>
                      <th class="px-4 py-3">Должность</th>
                      <th class="px-4 py-3">Анкета</th>
313a7a805   Андрей Ларионов   Работа с разделом...
12
                      <th class="px-4 py-3">Дата регистрации</th>
9b4580039   Андрей Ларионов   Медиа сущность, д...
13
                      <th class="px-4 py-3">Изменить</th>
313a7a805   Андрей Ларионов   Работа с разделом...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
                  </tr>
                  </thead>
                  <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
                  @foreach($users as $user)
                      <tr class="text-gray-700 dark:text-gray-400">
                          <td class="px-4 py-3">
                              {{$user->id}}
                          </td>
                          <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">
                                  <div
                                      class="absolute inset-0 rounded-full shadow-inner"
                                      aria-hidden="true"
                                  ></div>
                              </div>
                              <div>
                                  <p class="font-semibold"><a href="{{ route('admin.users') }}">Пользователи</a></p>
                                  <p class="text-xs text-gray-600 dark:text-gray-400">
                                      Все пользователи сайта
                                  </p>
                              </div>
                          </div>
                          -->
9b4580039   Андрей Ларионов   Медиа сущность, д...
38
39
40
                          <!--<a style="text-decoration: underline;" href="{{ route('admin.user-profile', ['user' => $user->id]) }}"></a>-->
  
                              {{ $user->name }}
313a7a805   Андрей Ларионов   Работа с разделом...
41
                          </td>
9b4580039   Андрей Ларионов   Медиа сущность, д...
42

313a7a805   Андрей Ларионов   Работа с разделом...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
                          <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">
                                      <div
                                          class="absolute inset-0 rounded-full shadow-inner"
                                          aria-hidden="true"
                                      ></div>
                                  </div>-->
                                  <div>
                                      <p class="font-semibold">{{ empty($user->employers->email) ? $user->email : $user->employers->email }}</p>
                                      <p class="text-xs text-gray-600 dark:text-gray-400">
                                          {{ empty($user->employers->telephone) ? $user->telephone : $user->employers->telephone }}
                                      </p>
                                  </div>
                              </div>
                          </td>
9b4580039   Андрей Ларионов   Медиа сущность, д...
59
60
  
                      <!--<td class="px-4 py-3 text-xs">
313a7a805   Андрей Ларионов   Работа с разделом...
61
62
63
64
                          <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">
                            @if ($user->is_worker)
                                  Работник
                              @else
9b4580039   Андрей Ларионов   Медиа сущность, д...
65
66
                          Работодатель
                          @endif
313a7a805   Андрей Ларионов   Работа с разделом...
67
                          </span>
9b4580039   Андрей Ларионов   Медиа сущность, д...
68
69
                          @if ($user->admin)
                          <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">
313a7a805   Андрей Ларионов   Работа с разделом...
70
71
                             Администратор
                          </span>
9b4580039   Андрей Ларионов   Медиа сущность, д...
72
73
74
75
76
77
78
79
80
81
82
83
84
                          @endif
                          @if ($user->is_bd)
                          <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">
                             База данных
                          </span>
                          @endif
                          </td>-->
  
                          <td class="px-4 py-3 text-xs">
                              @if (isset($user->jobtitles[0]->name))
                                  {{ $user->jobtitles[0]->name }}
                              @else
                                  -
313a7a805   Андрей Ларионов   Работа с разделом...
85
                              @endif
9b4580039   Андрей Ларионов   Медиа сущность, д...
86
87
88
89
90
91
                          </td>
  
                          <td class="px-4 py-3 text-sm">
                          @if (isset($user->workers[0]->id))
                              <!--<a href="{{ route('admin.worker-profile-edit', ['worker' => $user->workers[0]->id]) }}">Править</a> |-->
                              <!--<a href="{{ route('admin.doc-basedata', ['user' => $user->id]) }}">Скачать</a>-->
313a7a805   Андрей Ларионов   Работа с разделом...
92
                              @endif
9b4580039   Андрей Ларионов   Медиа сущность, д...
93
94
95
96
97
                              @isset($user->file)
                                  <a class="text-gray-700 dark:text-gray-400" target="blank" href="{{ asset(Storage::url($user->file)) }}">Скачать</a>
                              @else
                                  <p class="text-gray-700 dark:text-gray-400">-</p>
                              @endisset
313a7a805   Андрей Ларионов   Работа с разделом...
98
99
100
101
102
                          </td>
  
                          <td class="px-4 py-3 text-sm">
                              {{ date('d.m.Y', strtotime($user->created_at)) }}
                          </td>
9b4580039   Андрей Ларионов   Медиа сущность, д...
103
104
105
106
107
108
109
110
111
  
                          <td class="px-4 py-3 text-sm_">
                              <form action="{{ route('admin.delete-basedata', ['user' => $user->id]) }}" method="POST">
                                  <a href="{{ route('admin.edit-basedata', ['user' => $user->id]) }}">Изменить</a> |
                                  @csrf
                                  @method('DELETE')
                                  <input class="btn btn-danger" type="submit" value="Удалить"/>
                              </form>
                          </td>
313a7a805   Андрей Ларионов   Работа с разделом...
112
113
114
115
116
117
118
119
120
121
                      </tr>
                  @endforeach
                  </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">
          <?//=$users->appends($_GET)->links('admin.pagginate'); ?>
          <?=$users->links('admin.pagginate'); ?>
          </div>