@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Teaching Plan'])
@include('components.alert')
@csrf
Teaching Plans
Save
Cancel
Department Name
-- Select Department --
@foreach($department as $dept)
{{ $dept->department_name }}
@endforeach
Course
-- Select Course --
@foreach($course as $course_item)
{{ $course_item->course_name }}
@endforeach
Name of Lecturer
-- Select Lecturer --
@foreach($staff as $lecturer)
{{ $lecturer->firstname }}
@endforeach
Paper
-- Select Paper --
@foreach($subject as $subject_item)
{{ $subject_item->subject_name }}
@endforeach
Topics Name
Hours Required
Month
-- Select Paper --
@foreach($month as $item)
{{ $item->cms_month_name }}
@endforeach
Week
Year
Teaching Aids Used
-- Select Teaching Aid --
@foreach($teachingaid as $item)
{{ $item->cms_teaching_aid_name }}
@endforeach
Previous Knowledge to be reminded
Learning Objectives
Topics Synopsis
Choose File
Examples/Illustration
Additional Inputs
Reference Cited
Student Activity Planned After the teaching
Activity Planned outside the classroom
Any Other Activity
@include('layouts.footers.auth.footer')
@endsection