1. Teaching Load
a) Lecture
=
12 Credits, 24 Hours/Week
TOR
=
12 Credits, 24 Hours/Week
{{-- ================================================= --}}
{{-- 1a Lecture --}}
{{-- ================================================= --}}
@foreach([1,2,3] as $semester)
@php
$rows =
$lecture[$semester]
?? collect();
@endphp
Academic Year
{{ $teachingLoad->teaching_load_year }}
- Semester {{ $semester }}
| No. |
Course No.
|
Course
|
Portions (%)
|
Sec.No.
|
No. of Students
|
No. of Weeks
|
Lecture (Hr/Wk)
|
Credits
|
Contact (Hr/Wk)
|
Source
|
@forelse($rows as $key => $row)
|
{{ $key + 1 }}
|
{{ $row->course_code }}
|
{{ $row->course_name }}
|
{{ $row->course_portions }}
|
{{ $row->course_section }}
|
{{ $row->course_student }}
|
{{ $row->course_week }}
|
{{ $row->course_lecture }}
|
{{ $row->course_credit }}
|
{{ $row->course_contact }}
|
@if(($row->source ?? 'AUTO') == 'AUTO')
AUTO
@else
MANUAL
@endif
|
@empty
|
No lecture data.
|
@endforelse
@endforeach
{{-- ================================================= --}}
{{-- 1b Laboratory --}}
{{-- ================================================= --}}
b) Laboratory
@foreach([1,2,3] as $semester)
@php
$rows =
$laboratory[$semester]
?? collect();
@endphp
Academic Year
{{ $teachingLoad->teaching_load_year }}
- Semester {{ $semester }}
| No. |
Course No.
|
Course
|
Portions (%)
|
Sec.No.
|
No. of Students
|
No. of Lecturers
|
Lab.&Lect (Hr/Wk)
|
Credits
|
Contact (Hr/Wk)
|
Source
|
@forelse($rows as $key => $row)
|
{{ $key + 1 }}
|
{{ $row->course_code }}
|
{{ $row->course_name }}
|
{{ $row->course_portions }}
|
{{ $row->course_section }}
|
{{ $row->course_student }}
|
{{ $row->course_lab_lect }}
|
{{ $row->course_week }}
|
{{ $row->course_credit }}
|
{{ $row->course_contact }}
|
@if(($row->source ?? 'AUTO') == 'AUTO')
AUTO
@else
MANUAL
@endif
|
@empty
|
No laboratory data.
|
@endforelse
@endforeach