Blame view

resources/views/admin/houses/view_img.blade.php 2.57 KB
f399180fc   Андрей Ларионов   Админка страница ...
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
  @extends('layout.admin', ['title' => 'Дополнительные картинки офиса'])
  
  @section('content')
      <section class="favorites">
          <div class="favorites-top">
              <div class="container">
                  <div class="breadcrumbs">
                      <ul class="breadcrumbs__list">
                          <li class="breadcrumbs__item"><a class="breadcrumbs__link" href="{{ route('user.index') }}">Главная</a></li>
                          <li class="breadcrumbs__item"><a class="breadcrumbs__link" href="{{ route('admin.houses.index') }}">Офисы </a></li>
                          <li class="breadcrumbs__item"><span class="breadcrumbs__link">Дополнительные картинки офиса </span></li>
                      </ul>
                  </div>
                  <h1 class="favorites__title title-main">Дополнительные картинки офиса</h1>
              </div>
          </div>
          <div class="favorites-cnt">
              <div class="container">
                  <h3>ID: {{$house->id}} Название офиса: {{$house->title}}</h3><br><br>
                  <h3>Дополнительные картинки</h3><br>
                  <a class="btn hero-search__btn btn--main" href="{{ route ('admin.add.images.houses', ['house' => $house->id]) }}">Добавить картинку в галерею</a><br><br>
  
                  <table class="table" style="width: 100%">
                      <thead>
                      <tr>
                          <th>ID</th>
                          <th>Фото</th>
                          <th>Действия</th>
                      </tr>
                      </thead>
                      <tbody>
                      @if ($house->fotohouse->count())
                          @foreach($house->fotohouse as $img)
                              <tr>
                                  <td><?=$img->id?></td>
05d007af9   Андрей Ларионов   Сетевые пути дост...
36
                                  <td><img src="/storage/app/public/<?=$img->foto;//=asset(Storage::url($img->foto))?>" width="100px"/></td>
f399180fc   Андрей Ларионов   Админка страница ...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
                                  <td><a href="{{ route('admin.del.images.houses', ['id'=> $img->id, 'house' => $house->id]) }}">Удалить</a></td>
                              </tr>
                          @endforeach
                      @else
                          <tr>
                              <td>-</td>
                              <td>-</td>
                              <td>-</td>
                          </tr>
                      @endif
                      </tbody>
                  </table>
              </div>
          </div>
      </section>
  @endsection