From f5d69e9c7f36c1e5ff4f3759ac544efc25464aa4 Mon Sep 17 00:00:00 2001 From: aslan Date: Sat, 17 Feb 2024 10:10:57 +0300 Subject: [PATCH] fix tests error show view on examination type --- .../direction/examination_type/show.blade.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/resources/views/admin/catalog/direction/examination_type/show.blade.php b/resources/views/admin/catalog/direction/examination_type/show.blade.php index fa351f0..7be3f3c 100644 --- a/resources/views/admin/catalog/direction/examination_type/show.blade.php +++ b/resources/views/admin/catalog/direction/examination_type/show.blade.php @@ -3,14 +3,16 @@ @auth()

Название

-

{{ $educationForm->name }}

+

{{ $examinationType->name }}

Описание

-

{{ $educationForm->description }}

+

{{ $examinationType->description }}

URL

-

{{ $educationForm->slug }}

+

{{ $examinationType->slug }}

+

Позиция

+

{{ $examinationType->position }}

Направления

- @foreach($directions as $direction) -

{{ $direction->name }}

+ @foreach($examinationType->entranceExaminations as $entranceExamination) +

{{ $entranceExamination->name }}

@endforeach
@endauth