Blame view
resources/views/admin/groups/form.blade.php
4.73 KB
82a9544dc Связи моделей, гр... |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800"> <label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Имя группы</span> <input name="name_group" id="name_group" class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input" placeholder="Название группы" value="{{ old('name_group') ?? $group->name_group ?? '' }}" /> @error('name_group') <span class="text-xs text-red-600 dark:text-red-400"> {{ $message }} </span> @enderror </label><br> |
82a9544dc Связи моделей, гр... |
14 15 16 17 18 19 20 |
<input type="hidden" name="user_id" id="user_id" value="{{ $editor }}"/> <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4"> <div> <button type="submit" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple"> Сохранить </button> |
313a7a805 Работа с разделом... |
21 22 23 24 |
<a href="{{ route('admin.groups') }}" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple" style="display: -webkit-inline-box; height: 30px!important;" >Назад</a> |
82a9544dc Связи моделей, гр... |
25 26 |
</div> </div> |
29350503f Расширение полей ... |
27 28 29 30 |
<label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Пользователи системы</span> </label> |
4c66e360c Справочник докуме... |
31 32 |
<div> <table class="w-full whitespace-no-wrap" > |
29350503f Расширение полей ... |
33 34 35 36 37 38 |
<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> |
313a7a805 Работа с разделом... |
39 |
<th class="px-4 py-3">Статус пользователя</th> |
29350503f Расширение полей ... |
40 41 42 |
<th class="px-4 py-3">Добавленные в группу</th> </tr> </thead> |
4c66e360c Справочник докуме... |
43 |
<tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800" id="showmore-list"> |
29350503f Расширение полей ... |
44 |
@foreach($users as $user) |
4c66e360c Справочник докуме... |
45 |
<tr class="text-gray-700 dark:text-gray-400" > |
29350503f Расширение полей ... |
46 47 48 49 50 51 |
<td class="px-4 py-3"> {{$user->id}} </td> <td class="px-4 py-3"> {{$user->name}} </td> |
313a7a805 Работа с разделом... |
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
<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"> @if ($user->is_worker) Работник @else Работодатель @endif </span> @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"> Администратор </span> @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> |
29350503f Расширение полей ... |
71 |
<td class="px-4 py-3"> |
4c66e360c Справочник докуме... |
72 |
<input type="checkbox" id="user{{$user->id}}" name="usergroup[]" value="{{$user->id}}" @isset($group) <?php if ($user->ingroup->contains('id', $group->id)) {?>checked<? }?> @endisset/> |
29350503f Расширение полей ... |
73 74 75 76 77 |
</td> </tr> @endforeach </tbody> </table> |
4c66e360c Справочник докуме... |
78 79 80 81 82 83 84 85 86 87 |
</div> @if (!$hide) <div class="flex flex-col flex-wrap mb-4 space-y-4 md:flex-row md:items-end md:space-x-4"> <div> <a id="showmore-triger" data-page="1" data-max="{{ $amt }}" class="px-3 py-1 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-md active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple center"> Погрузить пользователей </a> </div> </div> @endif |
82a9544dc Связи моделей, гр... |
88 |
</div> |