Назначения курсов

Добавить назначение
@if(session('success'))
{{ session('success') }}
@endif
@forelse($assignments as $course_assignment) @empty @endforelse
Курс Тип Назначено Период Статус Действия
{{ $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
@csrf @method('DELETE')

Назначений пока нет

{{ $assignments->links() }}