Blame view

resources/views/admin/area/edit.blade.php 2.65 KB
7c115bff1   Андрей Ларионов   Админка - объекты...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  @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.area.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">
                  <form method="post" enctype="multipart/form-data" action="{{ route('admin.area.update', ['area' => $area->id]) }}" style="width:100%">
                      @include('admin.area.form')
                  </form>
3575d19ae   Андрей Ларионов   Админка новости и...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
                  <br><br>
                  <h3>Дополнительные картинки</h3>
                  <a style="color:green" href="{{ route ('admin.img.area', ['area' => $area->id]) }}">Добавить картинку в галерею</a>
                  <table class="table" style="width: 100%">
                      <thead>
                      <tr>
                          <th>ID</th>
                          <th>Фото</th>
                          <th>Действия</th>
                      </tr>
                      </thead>
                      <tbody>
                      @if ($area->fotos->count())
                          @foreach($area->fotos as $img)
                            <tr>
                                <td><?=$img->id?></td>
05d007af9   Андрей Ларионов   Сетевые пути дост...
38
                                <td><img src="/storage/app/public/<?=$img->foto;//=asset(Storage::url($img->foto))?>" width="100px"/></td>
3575d19ae   Андрей Ларионов   Админка новости и...
39
40
41
42
43
44
45
46
47
48
49
50
                                <td><a href="{{ route('admin.img.del.area', ['id'=> $img->id, 'area' => $area->id]) }}">Удалить</a></td>
                            </tr>
                          @endforeach
                      @else
                          <tr>
                              <td>-</td>
                              <td>-</td>
                              <td>-</td>
                          </tr>
                      @endif
                      </tbody>
                  </table>
7c115bff1   Андрей Ларионов   Админка - объекты...
51
52
53
54
              </div>
          </div>
      </section>
  @endsection