48 lines
2.2 KiB
PHP
48 lines
2.2 KiB
PHP
@extends('layouts.admin_layout')
|
|
@section('content')
|
|
<div class="container">
|
|
<h2>Места</h2>
|
|
<br>
|
|
<a href="{{ route('places.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">Тип места</th>
|
|
<th scope="col">направление</th>
|
|
<th scope="col">Кол-во</th>
|
|
<th scope="col">действия</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($places as $place)
|
|
<tr class="">
|
|
<td>{{ $place->position }}</td>
|
|
<td>{{ Str::words($place->description, 10, '...') }}</td>
|
|
<td><a href="{{ route('education_forms.show', $place->educationForm) }}">{{ $place->educationForm->name }}</a></td>
|
|
<td><a href="{{ route('place_types.show', $place->placeType) }}">{{ $place->placeType->name }}</a></td>
|
|
<td><a href="{{ route('directions.show', $place->direction) }}">{{ $place->direction->name }}</a></td>
|
|
<td>{{ $place->amount }}</td>
|
|
<td>
|
|
<a href="{{ route("places.show", $place) }}"
|
|
class="btn btn-info">посмотреть</a>
|
|
<a href="{{ route("places.edit", $place) }}"
|
|
class="btn btn-secondary">редактировать</a>
|
|
<a rel="nofollow" data-method="delete" data-confirm="Вы действительно хотите удалить?"
|
|
href="{{ route('places.destroy', $place) }}"
|
|
class="btn btn-danger">удалить</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
@endsection
|