Blame view

resources/views/admin/editbloks/index_ajax.blade.php 4.89 KB
dd87a3ce4   Андрей Ларионов   Реклама-блок, обн...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  <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>
                      <th class="px-4 py-3">Ссылка</th>
                      <th class="px-4 py-3">Родитель</th>
                      <th class="px-4 py-3">Сортировка</th>
                      <th class="px-4 py-3">Дата создания</th>
                      <th class="px-4 py-3">Редактировать</th>
                  </tr>
                  </thead>
                  <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
                  @foreach($header_footer as $page)
                      <tr class="text-gray-700 dark:text-gray-400">
                          <td class="px-4 py-3">
                              {{$page->id}}
                          </td>
                          <td class="px-4 py-3">
                              {{$page->name}}
                          </td>
                          <td class="px-4 py-3">
                              {{$page->link}}
                          </td>
                          <td class="px-4 py-3">
90302d366   Андрей Ларионов   Блоки меню для фу...
29
                              <select name="code_id{{$page->code_id}}" id="code_id{{$page->id}}" data-fid="{{$page->id}}" data-field="code_id" class="form-control check_js">
dd87a3ce4   Андрей Ларионов   Реклама-блок, обн...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
                                  <option value="0"
                                          @if($page->code_id == 0)
                                          selected
                                      @endif
                                  >Не указано</option>
                                  @isset($list_menu)
                                      @foreach($list_menu as $menu)
                                          <option value="{{ $menu->id }}"
                                                  @if($menu->id == $page->code_id)
                                                  selected
                                              @endif
                                          >{{ $menu->name }} ({{ $menu->id }})</option>
                                      @endforeach
                                  @endisset
                              </select>
                          </td>
                          <td class="px-4 py-3 text-sm">
90302d366   Андрей Ларионов   Блоки меню для фу...
47
                              <select name="sort{{$page->id}}" id="sort{{$page->id}}" data-fid="{{$page->id}}" data-field="sort" class="form-control check_js">
dd87a3ce4   Андрей Ларионов   Реклама-блок, обн...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
                                  <option value="100" @if($page->sort == '100') selected @endif>100</option>
                                  <option value="110" @if($page->sort == '110') selected @endif>110</option>
                                  <option value="120" @if($page->sort == '120') selected @endif>120</option>
                                  <option value="130" @if($page->sort == '130') selected @endif>130</option>
                                  <option value="140" @if($page->sort == '140') selected @endif>140</option>
                                  <option value="150" @if($page->sort == '150') selected @endif>150</option>
                                  <option value="160" @if($page->sort == '160') selected @endif>160</option>
                                  <option value="170" @if($page->sort == '170') selected @endif>170</option>
                                  <option value="180" @if($page->sort == '180') selected @endif>180</option>
                                  <option value="190" @if($page->sort == '190') selected @endif>190</option>
                                  <option value="200" @if($page->sort == '200') selected @endif>200</option>
                              </select>
                          </td>
  
                          <td class="px-4 py-3">
                              {{$page->created_at}}
                          </td>
                          <td class="px-4 py-3 text-sm_">
90302d366   Андрей Ларионов   Блоки меню для фу...
66
67
                              <form action="{{ route('admin.delete-block', ['block' => $page->id]) }}" method="POST">
                                  <a href="{{ route('admin.edit-block', ['block' => $page->id]) }}">Изменить</a> |
dd87a3ce4   Андрей Ларионов   Реклама-блок, обн...
68
69
70
71
                                  @csrf
                                  @method('DELETE')
                                  <input class="btn btn-danger" type="submit" value="Удалить"/>
                              </form>
dd87a3ce4   Андрей Ларионов   Реклама-блок, обн...
72
73
74
75
76
77
78
79
80
81
                          </td>
                      </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">
        <?=$header_footer->appends($_GET)->links('admin.pagginate'); ?>
  </div>