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

29 lines
1.0 KiB
PHP
Raw Normal View History

2024-02-12 15:02:31 +03:00
@extends('layouts.admin_layout')
2024-02-10 11:23:38 +03:00
@section('content')
@auth()
<h6>
<a href="{{ route('educational_institutions.show', $educationalInstitution) }}">
2024-02-10 11:23:38 +03:00
{{ $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>URL</h2>
<p>{{ $direction->slug }}</p>
2024-02-10 11:23:38 +03:00
<h2>Кафедра</h2>
<p><a href="{{ route('departments.show', $department) }}">{{ $department->name }}</a></p>
</div>
@endauth
@endsection