@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'إحالات الدعم' : 'Support Referrals') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')

{{ $isArabic ? 'إحالات الدعم' : 'Support referrals' }}

{{ $isArabic ? 'تحويل الطلاب للأخصائي من مكان واحد' : 'Refer students to the counselor from one place' }}

@csrf
@if($referrals->count() > 0) @foreach($referrals as $referral)

{{ $referral->title }}

{{ $referral->student?->name ?? '—' }} • {{ $referral->status }} • {{ $referral->urgency }}

{{ $referral->concern }}

@endforeach @endif
{{ $referrals->links('pagination::simple-tailwind') }}
@endsection