Blame view
resources/views/admin/groups/form.blade.php
3.2 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 21 22 |
<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> </div> </div> |
29350503f Расширение полей ... |
23 24 25 26 |
<label class="block text-sm"> <span class="text-gray-700 dark:text-gray-400">Пользователи системы</span> </label> |
4c66e360c Справочник докуме... |
27 28 |
<div> <table class="w-full whitespace-no-wrap" > |
29350503f Расширение полей ... |
29 30 31 32 33 34 35 36 37 |
<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> <th class="px-4 py-3">Добавленные в группу</th> </tr> </thead> |
4c66e360c Справочник докуме... |
38 |
<tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800" id="showmore-list"> |
29350503f Расширение полей ... |
39 |
@foreach($users as $user) |
4c66e360c Справочник докуме... |
40 |
<tr class="text-gray-700 dark:text-gray-400" > |
29350503f Расширение полей ... |
41 42 43 44 45 46 47 |
<td class="px-4 py-3"> {{$user->id}} </td> <td class="px-4 py-3"> {{$user->name}} </td> <td class="px-4 py-3"> |
4c66e360c Справочник докуме... |
48 |
<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 Расширение полей ... |
49 50 51 52 53 |
</td> </tr> @endforeach </tbody> </table> |
4c66e360c Справочник докуме... |
54 55 56 57 58 59 60 61 62 63 |
</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 Связи моделей, гр... |
64 |
</div> |