21 lines
854 B
PHP
21 lines
854 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>URL</h2>
|
|
<p>{{ $faculty->slug }}</p>
|
|
<h2>Кафедры</h2>
|
|
@foreach($faculty->departments as $department)
|
|
<p><a href="{{ route('departments.show', $department) }}">{{ $department->name }}</a></p>
|
|
@endforeach
|
|
</div>
|
|
@endauth
|
|
@endsection
|