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

27 lines
967 B
PHP

@extends('layouts.admin_layout')
@section('content')
@auth()
<h6>
<a href="{{ route('educational_institutions.show', $educationalInstitution) }}">
{{ $educationalInstitution->name }}
</a>
->
<a href="{{ route('faculties.show', $faculty) }}">{{ $faculty->name }}</a>
->
<a href="{{ route('faculties.show', $department) }}">{{ $department->name }}</a>
-> {{ $direction->name }}
</h6>
<div class="container mt-4">
<h2>Название</h2>
<p>{{ $direction->name }}</p>
<h2>Описание</h2>
<p>{{ $direction->description }}</p>
<h2>Позиция</h2>
<p>{{ $direction->position }}</p>
<h2>Кафедра</h2>
<p><a href="{{ route('departments.show', $department) }}">{{ $department->name }}</a></p>
</div>
@endauth
@endsection