@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Student Status @endsection @section('content')

Student Status-[{{ $student->reg_no }}]

Below here is the list of all courses that have been registered to this student for this Academic year

@if (count($registered_courses_sem_one) > 0)
@foreach ($registered_courses_sem_one as $k => $course) @endforeach
Status Code Course Name Type Credit Course Status
Semester I
{{ Form::checkbox('course_id[]', true, ['id' => 'course_id' . $course->id]) }} {!! Form::label('course_id' . $course->id, ' ') !!}
{{ $course->course_code }} {{ $course->course_name }} {{ $srs->course_option($course->core) }} {{ $course->unit }}
@else
Info! No courses Registered for Semester One
@endif

@if (count($registered_courses_sem_two) > 0)
@foreach ($registered_courses_sem_two as $k => $course) @endforeach
Status Code Course Name Type Credit Course Status
Semester II
{{ Form::checkbox('course_id[]', true, ['id' => 'course_id' . $course->id]) }} {!! Form::label('course_id' . $course->id, ' ') !!}
{{ $course->course_code }} {{ $course->course_name }} {{ $srs->course_option($course->core) }} {{ $course->unit }}
@else
Info! No courses Registered for Semester Two
@endif

{{ $student->reg_no }}

Change Student Progression Status by clicking the link below


{{-- @dd($student->status) --}}

@endsection @section('css') @endsection @section('scripts') {{-- --}} @endsection