@extends('student.layouts.app') @section('title', app()->getLocale() === 'ar' ? 'جدول الأسبوع' : 'Weekly Schedule') @section('content') @php($isArabic = app()->getLocale() === 'ar')
{{ $isArabic ? 'عرض أسبوعي واضح لحصصك الحالية حسب الفصل الدراسي المرتبط بحسابك.' : 'A clear weekly view of your current classes based on the school class linked to your account.' }}
| {{ $isArabic ? 'الحصة' : 'Period' }} | {{ $isArabic ? 'المادة' : 'Course' }} | {{ $isArabic ? 'التوقيت' : 'Time' }} |
|---|---|---|
| {{ $entry->period }} | {{ $entry->course?->name ?: '—' }} | {{ $entry->start_time }} - {{ $entry->end_time }} |