index.blade.php 2.56 KB
@extends('layout.admin', ['title' => 'Проекты'])

@section('content')
    <div class="profile-block-wrapper">
        <div class="profile-block">
            <h2 class="modal-auth__title_">
                Проекты
            </h2><br>
            <a href="{{ route('admin.project.create') }}" class="btn banner-container__button" style="margin: 0px;">
                Создать проект
            </a><br><br>

            <table class="table" style="width: 100%">
                <thead>
                <tr>
                    <th>ID</th>
                    <th>Фото</th>
                    <th>Заголовок</th>
                    <th>Дата создания</th>
                    <th>Действия</th>
                </tr>
                </thead>
                <tbody>
                @if ($projects->count())
                    @foreach($projects as $project)
                        <tr>
                            <td>{{ $project->id }}</td>
                            <td><? if (empty($project->image)) {?>Нет фото<?} else {?>
                            <!--<img src="/storage/app/public/<?//=$area->foto_main; //=asset(Storage::url($area->foto_main))?>" width="100px"/>-->
                                <img src="<?=asset(Storage::url($project->image))?>" width="100px"/>
                                <?}?></td>

                            <td>{{ $project->title }}</td>
                            <td>{{ $project->created_at }}</td>
                            <td> <form action="{{ route('admin.project.destroy', $project) }}" method="POST">
                                    <a  href="{{ route('admin.project.edit', ['project' => $project->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>
                    </tr>
                @endif

                </tbody>
            </table>

            {{ $projects->onEachSide(1)->links('catalogs.paginate') }}

        </div>
    </div>
    <br><br>
@endsection