edit.blade.php
2.62 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
@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>
<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>
<td><img src="<?=asset(Storage::url($img->foto))?>" width="100px"/></td>
<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>
</div>
</div>
</section>
@endsection