{{ app()->getLocale() === 'ar' ? 'تقرير الجلسات - الأخصائي الاجتماعي' : 'Social Worker Sessions Report' }}

{{ auth()->user()->full_name }} — {{ \Carbon\Carbon::now()->translatedFormat('j F Y') }}

@forelse($sessions as $i => $session) @empty @endforelse
# {{ app()->getLocale() === 'ar' ? 'الطالب' : 'Student' }} {{ app()->getLocale() === 'ar' ? 'النوع' : 'Type' }} {{ app()->getLocale() === 'ar' ? 'الحالة' : 'Status' }} {{ app()->getLocale() === 'ar' ? 'التاريخ' : 'Date' }} {{ app()->getLocale() === 'ar' ? 'الموقع' : 'Location' }} {{ app()->getLocale() === 'ar' ? 'ملخص النتيجة' : 'Outcome' }}
{{ $i + 1 }} {{ $session->student?->full_name ?? '—' }} {{ $session->session_type }} {{ $session->status }} {{ \Carbon\Carbon::parse($session->starts_at)->format('Y-m-d') }} {{ $session->location ?? '—' }} {{ \Illuminate\Support\Str::limit($session->outcome_summary ?? '—', 60) }}
{{ app()->getLocale() === 'ar' ? 'لا توجد جلسات' : 'No sessions found' }}