view_img.blade.php 2.53 KB
@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>
                                <td><img src="<?=asset(Storage::url($img->foto))?>" width="100px"/></td>
                                <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