@extends('layouts.app') @php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; $dayLabels = [ 'sunday' => $isRtl ? 'الأحد' : 'Sunday', 'monday' => $isRtl ? 'الاثنين' : 'Monday', 'tuesday' => $isRtl ? 'الثلاثاء' : 'Tuesday', 'wednesday' => $isRtl ? 'الأربعاء' : 'Wednesday', 'thursday' => $isRtl ? 'الخميس' : 'Thursday', 'friday' => $isRtl ? 'الجمعة' : 'Friday', 'saturday' => $isRtl ? 'السبت' : 'Saturday', ]; @endphp @section('title', $isRtl ? 'جدول الحصص' : 'Class Schedule') @section('content')
{{ $slot->trainer?->full_name ?? ($slot->gymClass->trainer?->full_name ?? '—') }} @if($slot->room) •{{ $isRtl ? 'قاعة:' : 'Room:' }} {{ $slot->room }} @endif
{{ $isRtl ? 'لا توجد مواعيد' : 'No schedules' }}