@extends('student.layouts.app') @section('title', $course->name . ' | ' . __('dashboard.Inquiries')) @section('content') @php($isArabic = app()->getLocale() === 'ar')
@include('student.courses.inc.overview', ['course' => $course]) @include('student.courses.inc.tabs', ['course' => $course])

{{ $isArabic ? 'الاستفسارات' : 'Inquiries' }}

{{ $isArabic ? 'سجل رسائلك داخل هذا المقرر مع متابعة واضحة لحالة كل استفسار.' : 'Your messages inside this course with a clear status for each inquiry.' }}

{{ $isArabic ? 'استفسار جديد' : 'New inquiry' }}
@foreach($inquiries as $inquiry) @endforeach @if(($inquiries)->isEmpty())
{{ $isArabic ? 'لم تقم بإرسال أي استفسارات بعد.' : 'You have not sent any inquiries yet.' }}
@endif
@endsection