@php use App\Models\Direction; use App\Models\Department; use App\Models\EducationalInstitution;use App\Models\Faculty;use Illuminate\Support\Collection; /** @var Collection|Direction[] $direction */ $department = Department::find($direction->department->id); $faculty = Faculty::find($department->faculty->id); $educationalInstitution = EducationalInstitution::find($faculty->educationalInstitution->id); @endphp @extends('layouts.admin-layout') @section('content') @auth()
{{ $direction->name }}
{{ $direction->description }}
{{ $direction->position }}