Назначение курса
Информация
| Курс: | {{ $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->note ?? '—' }} |
| Создано: | {{ $course_assignment->creator?->name ?? '—' }}, {{ $course_assignment->created_at->format('d.m.Y H:i') }} |
Период доступа
{{ $course_assignment->start_date->format('d.m.Y') }}
@if($course_assignment->end_date)
{{ $course_assignment->end_date->format('d.m.Y') }}
@else
Бессрочно
@endif
@if($course_assignment->is_active)
Активно
@else
Не активно
@endif