@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Edit Teaching Plan'])
@include('components.alert')
@csrf @method('PUT')
Edit Teaching Plan
Update
Cancel
Department Name
-- Select Department --
@foreach($department as $dept)
cms_department_sid == $dept->cms_department_sid ? 'selected' : '' }}> {{ $dept->department_name }}
@endforeach
Course
-- Select Course --
@foreach($course as $course_item)
cms_course_sid == $course_item->cms_course_sid ? 'selected' : '' }}> {{ $course_item->course_name }}
@endforeach
Lecturer Name
-- Select Lecturer --
@foreach($staff as $lecturer)
cms_staff_id == $lecturer->cms_staff_id ? 'selected' : '' }}> {{ $lecturer->firstname }}
@endforeach
Paper
-- Select Paper --
@foreach($subject as $subject_item)
cms_subject_sid == $subject_item->cms_subject_sid ? 'selected' : '' }}> {{ $subject_item->subject_name }}
@endforeach
Topics Name
Hours Required
Month
-- Select Month --
@foreach($month as $item)
month == $item->cms_month_sid ? 'selected' : '' }}> {{ $item->cms_month_name }}
@endforeach
Week
Year
Teaching Aids Used
-- Select Teaching Aids --
@foreach($teachingaid as $item)
cms_teaching_aid_sid, explode(',', $teachingPlan->cms_teaching_aid_sids)) ? 'selected' : '' }}> {{ $item->cms_teaching_aid_name }}
@endforeach
Previous Knowledge to be reminded
{{ old('previous_knowledge', $teachingPlan->priorknowledgereminder) }}
Learning Objectives
{{ old('learning_objectives', $teachingPlan->learningobjctive) }}
Topics Synopsis
{{ old('topics_synopsis', $teachingPlan->topicssynopsis) }}
Choose File
@if($teachingPlan->topicssynpfile)
Current File:
View Document
@endif
Examples/Illustration
{{ old('examples_illustration', $teachingPlan->illustation) }}
Additional Inputs
{{ old('additional_inputs', $teachingPlan->additionalinput) }}
Reference Cited
{{ old('reference_cited', $teachingPlan->referencecited) }}
Student Activity Planned After the teaching
{{ old('student_activity_planned', $teachingPlan->studentactivityplanned) }}
Activity Planned outside the classroom
{{ old('activity_planned_outside', $teachingPlan->studentactivityplannedoutside) }}
Any Other Activity
{{ old('any_other_activity', $teachingPlan->anyotheractivity) }}
@endsection