Blame view

resources/views/admin/static/index_ads_ajax.blade.php 1.61 KB
e688e0d8a   Андрей Ларионов   Статистика работн...
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  <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>
          </tr>
          </thead>
          <tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
  
          @foreach($stat as $ad)
              <tr class="text-gray-700 dark:text-gray-400">
                  <td class="px-4 py-3">
                      {{$ad->id}}
                  </td>
                  <td class="px-4 py-3">
                      {{ $ad->ads->name }} ({{ $ad->ad_employer_id }})
                  </td>
                  <td class="px-4 py-3">
                      {{ $ad->year_month }}
                  </td>
                  <td class="px-4 py-3">
                      {{ $ad->lookin }}
                  </td>
                  <td class="px-4 py-3">
                      {{ $ad->message }}
                  </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">
      <?=$stat->appends($_GET)->links('admin.pagginate'); ?>
  </div>