@extends('layouts/layoutMaster') @section('title', 'Preview - Course Form') @section('vendor-style') @endsection @section('page-style') @endsection @section('vendor-script') @endsection @section('content')
@if(session()->has('error')) @endif
Course registration summary:
Number Of Courses: {{count($cusfom->loadedcourses)}}
Session: {{$cusfom->session}}
Semester: @if($cusfom->semester==1) First Semester @else Second Semester @endif
Level: {{$cusfom->student_level}}00 Level
Total Credit Unit: {{$cusfom->loadedcourses->sum('course_load')}}
@foreach($cusfom->loadedcourses as $cs) @endforeach
S/n Course Code Course Name Credit Unit
{{$loop->iteration}} {{$cs->course->code}} {{$cs->course->name}} {{$cs->course->credit_unit}}
Note: Please verify your courses before you print. Once you print it you will not be able to edit it on your own again . Thank You!
{{-- --}} Print Edit Course Form Add Carry Over
@endsection