applicant-site/resources/views/admin/catalog/direction/place/show.blade.php

20 lines
659 B
PHP

@extends('layouts.admin_layout')
@section('content')
@auth()
<div class="container mt-4">
<h2>позиция</h2>
<p>{{ $place->position }}</p>
<h2>описание</h2>
<p>{{ $place->description }}</p>
<h2>Форма обучения</h2>
<p>{{ $place->educationForm->name }}</p>
<h2>Тип Места</h2>
<p>{{ $place->placeType->name }}</p>
<h2>Направление</h2>
<p>{{ $place->direction->name }}</p>
<h2>Кол-во</h2>
<p>{{ $place->amount }}</p>
</div>
@endauth
@endsection