prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
1 changed files with 7 additions and 5 deletions
Showing only changes of commit f5d69e9c7f - Show all commits

View File

@ -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