index.blade.php
4.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@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"><span class="breadcrumbs__link">Объекты недвижимости </span></li>
</ul>
</div>
<h1 class="favorites__title title-main">Объекты недвижимости</h1>
</div>
</div>
<div class="favorites-cnt">
<div class="container">
<a href="{{ route('admin.area.create') }}" class="btn hero-search__btn btn--main">
Создать объект
</a><br><br>
<table class="table" style="width: 100%">
<thead>
<tr>
<th>Фото</th>
<th>ID</th>
<th>Название объекта</th>
<th>Координаты X</th>
<th>Координаты Y</th>
<th>Дата создания</th>
<th>Действия</th>
</tr>
</thead>
<tbody>
@if ($areas->count())
@foreach($areas as $area)
<tr>
<td><? if (empty($area->foto_main)) {?>Нет фото<?} else {?><img src="/storage/app/public/<?=$area->foto_main; //=asset(Storage::url($area->foto_main))?>" width="100px"/><?}?></td>
<td>{{ $area->id }}</td>
<td>{{ $area->name_area }}</td>
<td>{{ $area->coord_x }}</td>
<td>{{ $area->coord_y }}</td>
<td>{{ $area->created_at }}</td>
<td> <form action="{{ route('admin.area.destroy', $area) }}" method="POST">
<a style="color:green" href="{{ route('admin.area.show', ['area' => $area->id]) }}">
Просмотр
</a> |
<a href="{{ route('admin.area.edit', ['area' => $area->id]) }}">
Редактировать
</a> |
@csrf
@method('DELETE')
<input class=" btn-danger" type="submit" value="Удалить">
</form>
</td>
</tr>
@endforeach
@else
<tr>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
@endif
</tbody>
</table>
{{ $areas->onEachSide(1)->links('catalogs.paginate') }}
<div class="favorites__items">
<!--<div class="favorites-item">
<div class="favorites-item__img"><img src="images/favorites/favorites-item-img-1.svg" alt=""></div>
<p class="favorites-item__descr"><a href="#">Найдите</a> идеальную планировку на сайте Renttorg</p>
</div>
<div class="favorites-item">
<div class="favorites-item__img"><img src="images/favorites/favorites-item-img-2.svg" alt=""></div>
<p class="favorites-item__descr">Нажмите на <img src="images/favorites-icon-mini.svg" alt=""> для добавления недвижемости в избранное</p>
</div>
<div class="favorites-item">
<div class="favorites-item__img"><img src="images/favorites/favorites-item-img-3.svg" alt=""></div>
<p class="favorites-item__descr">Перейдите в избранное или сравнение для выбора планировки</p>
</div>-->
</div>
</div>
</div>
</section>
@endsection