@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Teachers Teaching Time @endsection @section('subcontent')

Teachers Teaching Times

@foreach ($teachers as $teacher)
{{--

Latest Tasks

--}}
Midone - HTML Admin Template
{{ $teacher->name }}
{{ $teacher->fname }}
@php $teaching_history = App\Models\TeachingHistory::where('teacher_id', $teacher->id)->get(); @endphp
@foreach ($teaching_history as $row) @php $course = App\Models\Course::where('id', $row->course_id)->first(); @endphp
{{ $course->title }}
{{ $course->time_start }} - {{ $course->time_end }}
@endforeach
@endforeach {{-- {!! $teachers->links() !!} --}}
@include('../pages/student/show') @include('../pages/student/delete') @endsection @section('script') @endsection