{{ $isArabic ? 'الابن' : 'Child' }}
{{ $inquiry->student?->name ?? '—' }}
@extends('layouts.main_dashboard.app') @php $isArabic = app()->getLocale() === 'ar'; @endphp @section('title', __('dashboard.View Inquiry') . ' | ' . $inquiry->title) @section('skip_page_hero', true) @section('content')
{{ $isArabic ? 'تفاصيل الاستفسار' : 'Inquiry details' }}
{{ $isArabic ? 'راجع الرسالة المرسلة والمرفقات وحالة الرد من المعلم.' : 'Review the sent message, its attachments, and the teacher response state.' }}
{{ $isArabic ? 'الابن' : 'Child' }}
{{ $inquiry->student?->name ?? '—' }}
{{ $isArabic ? 'المعلم' : 'Teacher' }}
{{ $inquiry->teacher?->name ?? '—' }}
{{ $isArabic ? 'المساق' : 'Course' }}
{{ $inquiry->course?->name ?? '—' }}
{{ $isArabic ? 'الحالة' : 'Status' }}
{{ filled($inquiry->teacher_reply) ? ($isArabic ? 'تم الرد' : 'Answered') : ($isArabic ? 'بانتظار الرد' : 'Awaiting reply') }}