@extends('layouts.admin_layout') @section('content')

Направления


Создать Направление Импорт xls


{{Form::open(['route' => 'directions.index', 'method' => 'GET'])}} {{Form::text('filter[name]', $filter['name'] ?? null, ['placeholder' => 'Введите название направления', 'class' => 'form-control'])}}
{{Form::submit('Найти', ['class' => 'btn btn-primary'])}} {{Form::close()}}
@foreach($directions as $direction) @endforeach
Позиция Название Описание URL Кафедра Уровень образования действия
{{ $direction->position }} {{ $direction->name }}

@foreach($direction->directionProfiles as $directionProfile) {{ $directionProfile->name }}
@endforeach

{{ Str::words($direction->description, 10, '...') }} {{ $direction->slug }} {{ $direction->department->name }} {{ $direction->educationLevel->name }} редактировать Дублировать удалить


@endsection