@extends('layouts.dashboard') @section('title-content')
Code: | {{ $course->course_code }} |
---|---|
Name: | {{ $course->course_name }} |
Configuration: | {{ $course->unit . ' Units/Credits ' }}CA Weight:/{{ $course->cw }} SE Weight:/{{ $course->final }} |
Offering Dept: | {{ $course->department->department_name }} -({{ $course->department->faculty->faculty_name }}) |
Time Scale: | Semester/Trimester/Module {{ 'o' }} |
Grading Scheme: | {{ $course->grade_scheme->name }} |
Result Status: | |
Instructors: |
@if ($course_staffs->count() > 0)
@foreach ($course_staffs as $staff)
{{ $staff->user->last_name . ', ' . $staff->user->first_name . ' ' . $staff->user->middle_name . ' [' . $staff->pivot->stream . ' ]' }}
@if ($course->programs->count() > 0)
Currently No Instructor
Assigned
@endif
|
Manage Instructor: |
@if ($course_staffs->count() > 0)
@foreach ($del_instructor as $data)
{!! Form::open(['route' => 'courses.course-staff-delete', 'method' => 'DELETE']) !!}
{!! Form::hidden('course_id', $course->id) !!}
{!! Form::hidden('staff_id', $data->staff_id) !!}
{!! Form::hidden('year_id', $course->year_id) !!}
{!! Form::button('[ Remove :- ' . $data->inst_first_name . ' ' . $data->inst_last_name . ' ]', [
'type' => 'submit',
'class' => 'btn btn-sm btn-danger p-2',
]) !!}
{!! Form::close() !!}
@endforeach
@else
{{ 'No Instructor' }}
@endif
|
To view the students, click below
Notes & Reading materials
The reading materials for this course
Reports
The reports related to this course
Other Functions
The uploading history for this course