@php $isArabic = app()->getLocale() === 'ar'; $displayTitle = $course->subject?->name ?: $course->name; $courseProgress = min(100, max(0, (int) ($course->student_progress ?? 0))); $teacherName = $course->teacher?->name ?: trim(($course->teacher?->first_name ?? '') . ' ' . ($course->teacher?->last_name ?? '')); @endphp
{{ $isArabic ? 'المادة الدراسية' : 'Course' }}

{{ $displayTitle }}

@if ($teacherName)
{{ $isArabic ? 'المعلم' : 'Teacher' }}
{{ $teacherName }}
@endif
{{ $isArabic ? 'تقدم الطالب' : 'Student progress' }}
{{ $courseProgress }}%
{{ $isArabic ? 'نسبة الإنجاز الحالية' : 'Current completion' }} {{ $courseProgress }}/100