forked from aslan/applicant-site
fix tests error show view on examination type
This commit is contained in:
parent
1e0cf9a9e0
commit
f5d69e9c7f
|
@ -3,14 +3,16 @@
|
|||
@auth()
|
||||
<div class="container mt-4">
|
||||
<h2>Название</h2>
|
||||
<p>{{ $educationForm->name }}</p>
|
||||
<p>{{ $examinationType->name }}</p>
|
||||
<h2>Описание</h2>
|
||||
<p>{{ $educationForm->description }}</p>
|
||||
<p>{{ $examinationType->description }}</p>
|
||||
<h2>URL</h2>
|
||||
<p>{{ $educationForm->slug }}</p>
|
||||
<p>{{ $examinationType->slug }}</p>
|
||||
<h2>Позиция</h2>
|
||||
<p>{{ $examinationType->position }}</p>
|
||||
<h2>Направления</h2>
|
||||
@foreach($directions as $direction)
|
||||
<p><a href="{{ route('directions.show', $direction) }}">{{ $direction->name }}</a></p>
|
||||
@foreach($examinationType->entranceExaminations as $entranceExamination)
|
||||
<p><a href="{{ route('entrance_examinations.show', $entranceExamination) }}">{{ $entranceExamination->name }}</a></p>
|
||||
@endforeach
|
||||
</div>
|
||||
@endauth
|
||||
|
|
Loading…
Reference in New Issue