18 lines
606 B
PHP
18 lines
606 B
PHP
@extends('layouts.admin_layout')
|
|
@section('content')
|
|
@auth()
|
|
<div class="container mt-4">
|
|
<h2>Название</h2>
|
|
<p>{{ $educationLevel->name }}</p>
|
|
<h2>Описание</h2>
|
|
<p>{{ $educationLevel->description }}</p>
|
|
<h2>URL</h2>
|
|
<p>{{ $educationLevel->slug }}</p>
|
|
<h2>Направления</h2>
|
|
@foreach($directions as $direction)
|
|
<p><a href="{{ route('directions.show', $direction) }}">{{ $direction->name }}</a></p>
|
|
@endforeach
|
|
</div>
|
|
@endauth
|
|
@endsection
|