@extends('admin.layout.app') {{-- یا د استاد لایوټ --}} @section('body')

{{ __('admin.my_teaching_schedule') }}

@foreach($timetables as $tt) @endforeach
{{ __('admin.day') }}{{ __('admin.time') }}{{ __('admin.course') }}{{ __('admin.classroom') }}{{ __('admin.type_2') }}
{{ ucfirst($tt->day_of_week) }} {{ $tt->timeSlot->name ?? '' }} ({{ $tt->timeSlot->start_time }} - {{ $tt->timeSlot->end_time }}) {{ $tt->course->title ?? '' }} ({{ $tt->course->code ?? '' }}) {{ $tt->classroom->name ?? '' }} {{ ucfirst($tt->type) }}
@endsection