Назначения курсов
Добавить назначение{{ session('success') }}
@endif
| Курс | Тип | Назначено | Период | Статус | Действия |
|---|---|---|---|---|---|
| {{ $course_assignment->course->title }} | @if($course_assignment->type === 'individual') Индивидуально @elseif($course_assignment->type === 'group') Группе @else Организации @endif | @if($course_assignment->type === 'individual') {{ $course_assignment->user?->name ?? '—' }} @elseif($course_assignment->type === 'group') {{ $course_assignment->group?->name ?? '—' }} @else {{ $course_assignment->organization?->name ?? '—' }} @endif |
{{ $course_assignment->start_date->format('d.m.Y') }}
@if($course_assignment->end_date)
→ {{ $course_assignment->end_date->format('d.m.Y') }} @endif |
@if($course_assignment->is_active) Активно @else Не активно @endif | |
|
Назначений пока нет |
|||||