45 lines
2.1 KiB
PHP
45 lines
2.1 KiB
PHP
@extends('layouts.admin_layout')
|
|
@section('content')
|
|
<div class="container">
|
|
<h2>Учебные заведения</h2>
|
|
<br>
|
|
<a href="{{ route('educational_institutions.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>
|
|
<th scope="col">URL</th>
|
|
<th scope="col">действия</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="accordion" id="accordionExample">
|
|
@foreach($educationalInstitutions as $educationalInstitution)
|
|
<tr class="">
|
|
<th scope="row">{{ $educationalInstitution->position }}</th>
|
|
<td>
|
|
<a href="{{ route('educational_institutions.show', $educationalInstitution) }}">{{ $educationalInstitution->name }}</a>
|
|
</td>
|
|
<td>{{ Str::words($educationalInstitution->description, 10, '...') }}</td>
|
|
<th scope="row">{{ $educationalInstitution->slug }}</th>
|
|
<td class="col-3"><a href="{{ route("educational_institutions.edit", $educationalInstitution) }}"
|
|
class="btn btn-secondary">редактировать</a>
|
|
<a rel="nofollow" data-method="delete" data-confirm="Вы действительно хотите удалить?"
|
|
href="{{ route('educational_institutions.destroy', $educationalInstitution) }}"
|
|
class="btn btn-danger">
|
|
удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
@endsection
|