lk.zachem.info/app/Modules/Admin/Views/complexes/index.blade.php
2025-04-10 15:40:30 +08:00

112 lines
5.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.admin')
@section('content')
<h1>Жилые комплексы</h1>
<div class="d-flex mb-3">
<form class="p-2 border rounded-3 border-1 bg-white" method="GET" action="{{ route('admin.complexes') }}">
<input type="radio" class="btn-check" name="filter" value="all" id="option_all" autocomplete="off"
onclick="this.form.submit()" {{ $filter == 'all' || !$filter ? 'checked' : '' }}>
<label class="btn p-2 fs-5" for="option_all">Все</label>
<input type="radio" class="btn-check" name="filter" value="actual" id="option_actual" autocomplete="off"
onclick="this.form.submit()" {{ $filter == 'actual' ? 'checked' : '' }}>
<label class="btn p-2 fs-5" for="option_actual">Актуальные</label>
<input type="radio" class="btn-check" name="filter" value="trashed" id="option_trashed" autocomplete="off"
onclick="this.form.submit()" {{ $filter == 'trashed' ? 'checked' : '' }}>
<label class="btn p-2 fs-5" for="option_trashed">Удаленные</label>
</form>
<div class="ms-auto p-2">
<button class="btn btn-primary py-2 px-3 fs-5" data-bs-toggle="modal" data-bs-target="#createCityModal">
<i class="bi bi-plus"></i> Добавить комплекс
</button>
</div>
</div>
<div class="fs-5 bg-light p-0 m-0 border border-1 rounded-4 py-3">
<table class="table m-0">
<thead>
<tr scope="col">
<th>Название</th>
<th>Город</th>
<th>Дата создания
<th>
</tr>
</thead>
<tbody class=" ">
@foreach ($complexes as $complex)
<tr scope="row" class="@if ($complex->trashed()) bg-secondary @endif">
<td class="align-middle">
{{ $complex->name }}
</td>
<td class="align-middle">
{{ $complex->city->name }}
</td>
<td>
{{ $complex->created_at ? $complex->created_at->diffForHumans() : '' }}
</td>
<td class="text-end">
<div class="dropdown" style="">
<button class="btn btn-light" type="button" id="dropdownMenuButton"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@if ($complex->trashed())
<i class="bi bi-recycle"></i>
@else
<i class="bi bi-three-dots-vertical"></i>
@endif
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
@if ($complex->trashed())
<form method="post"
action="{{ route('admin.complexes.restore', ['complex' => $complex]) }}">
@csrf
<button class="dropdown-item" type="submit">Восстановить</button>
</form>
@else
<a class="dropdown-item"
href="{{ route('admin.complexes.edit', ['complex' => $complex]) }}">Редактировать</a>
<form method="post"
action="{{ route('admin.complexes.delete', ['complex' => $complex]) }}">
@csrf
<button class="dropdown-item" type="submit">Удалить</button>
</form>
@endif
</div>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- Modal -->
<div class="modal fade" id="createCityModal" tabindex="-1" aria-labelledby="createCityModalLabel" aria-hidden="true">
<form class="modal-dialog modal-dialog-centered" action="{{ route('admin.cities.create') }}" method="post">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="createCityModalLabel">Новый город</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="my-3">
@csrf
<label for="cityNameInput" class="form-label">Введите название нового города</label>
<input class="form-control" type="text" id="cityNameInput" name="name" required>
@error('text')
<div class="text-danger">{{ $message }}</div>
@enderror
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary">Добавить</button>
</div>
</div>
</form>
</div>
@endsection