@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'الجلسات الإرشادية' : 'Counseling Sessions') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')

{{ $isArabic ? 'الجلسات الإرشادية' : 'Counseling sessions' }}

{{ $isArabic ? 'جدولة الجلسات وتوثيق ملاحظاتها' : 'Schedule sessions and document their notes' }}

@csrf
@if($sessions->count() > 0) @foreach($sessions as $session)

{{ $session->student?->name ?? '—' }}

{{ $session->status }}

{{ $session->session_type }} • {{ $session->starts_at?->translatedFormat('Y/m/d h:i A') ?? '—' }}{{ $session->location ? ' • ' . $session->location : '' }}

@if($session->outcome_summary)

{{ $session->outcome_summary }}

@endif
@csrf
@endforeach @else
{{ $isArabic ? 'لا توجد جلسات مجدولة.' : 'No sessions scheduled.' }}
@endif
{{ $sessions->links('pagination::simple-tailwind') }}
@endsection