forked from aslan/applicant-site
20 lines
790 B
PHP
20 lines
790 B
PHP
|
@extends('layouts.admin-layout')
|
||
|
@section('content')
|
||
|
|
||
|
@auth()
|
||
|
<h6><a href="{{ route('educational-institutions.show', $faculty->educationalInstitution) }}">{{ $faculty->educationalInstitution->name }}</a> -> {{ $faculty->name }}</h6>
|
||
|
<div class="container mt-4">
|
||
|
<h2>Название</h2>
|
||
|
<p>{{ $faculty->name }}</p>
|
||
|
<h2>Описание</h2>
|
||
|
<p>{{ $faculty->description }}</p>
|
||
|
<h2>Позиция</h2>
|
||
|
<p>{{ $faculty->position }}</p>
|
||
|
<h2>Кафедры</h2>
|
||
|
@foreach($faculty->departments as $department)
|
||
|
<p><a href="{{ route('departments.show', $department) }}">{{ $department->name }}</a></p>
|
||
|
@endforeach
|
||
|
</div>
|
||
|
@endauth
|
||
|
@endsection
|