forked from aslan/applicant-site
84 lines
3.9 KiB
PHP
84 lines
3.9 KiB
PHP
@extends('layouts.admin-layout')
|
|
@section('content')
|
|
<div class="container">
|
|
<h2>Экран Приема</h2>
|
|
<br>
|
|
<a href="{{ route('admin-reception-screen.create') }}" class="btn btn-primary">Создать пункт Экрана приема</a>
|
|
<br>
|
|
<br>
|
|
<table class="table">
|
|
<thead class="border-b-2 border-solid border-black text-left" style="text-align: left">
|
|
<tr>
|
|
<th scope="col">Позиция</th>
|
|
<th scope="col">Название</th>
|
|
<th scope="col">действия</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($receptionScreens as $receptionScreen)
|
|
<tr>
|
|
<th scope="row">{{ $receptionScreen->position }}</th>
|
|
<td>{{ $receptionScreen->name }}</td>
|
|
<td><a href="{{ route("admin-reception-screen.edit", $receptionScreen) }}" class="btn btn-secondary">редактировать</a>
|
|
<a rel="nofollow" data-method="delete" data-confirm="Вы действительно хотите удалить?"
|
|
href="{{ route('admin-reception-screen.destroy', $receptionScreen) }}" class="btn btn-danger">
|
|
удалить
|
|
</a>
|
|
</td>
|
|
@if(count($receptionScreen->files) !== 0)
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Позиция</th>
|
|
<th scope="col">Имя Файла</th>
|
|
<th scope="col">действия</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
@foreach($receptionScreen->files->sortBy('position') as $file)
|
|
<tr>
|
|
<th scope="row">{{ $file->position }}</th>
|
|
<td>{{ $file->name }}</td>
|
|
<td><a href="{{ route("files.edit", $file) }}"
|
|
class="btn btn-secondary">редактировать</a>
|
|
<a rel="nofollow" data-method="delete"
|
|
data-confirm="Вы действительно хотите удалить?"
|
|
href="{{ route('files.destroy', $file) }}"
|
|
class="btn btn-danger">
|
|
удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
|
|
</tbody>
|
|
</table>
|
|
<div class="mb-2">
|
|
<a href="{{ route('files.create', $receptionScreen->id) }}"
|
|
class="btn btn-primary">
|
|
Добавить файл
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@else
|
|
<tr>
|
|
<td colspan="3">
|
|
@php($idReceptionScreen = $receptionScreen->id)
|
|
<a href="{{ route('files.create', $idReceptionScreen) }}" class="btn btn-primary">Добавить
|
|
файл</a>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
@endsection
|