{{ $material->title }}

Back to Training
{!! $material->content !!}
@if($material->video_url)

Training Video

@endif @if($material->has_quiz && !$progress->completed)

Knowledge Check

@endif @if(!$material->has_quiz && !$progress->completed)
@csrf
@endif

Training Information

Status

@if($progress->completed)
Completed @if($progress->completed_at) {{ $progress->completed_at->format('M d, Y') }} @endif
@else
In Progress
@endif
@if($progress->completed && $progress->score)

Quiz Score

{{ $progress->score }}%

@endif

Estimated Time

{{ $material->estimated_minutes }} minutes

@if($material->file_path) @endif
@if($relatedCertifications->isNotEmpty())

Related Certifications

@foreach($relatedCertifications as $certification)

{{ $certification->name }}

{{ Str::limit($certification->description, 100) }}

@endforeach
@endif