{{-- Layout --}} @extends('student.layout.layout') {{-- Page Title --}} @section('title','GAS LMS | Dashboard') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Dashboard' => route('student.dashboard')]]) @endsection {{-- Content --}} @section('content')
@forelse ($student_sessions as $session)

{{ $session->acyname }}

@foreach ($courses->where('acysid',$session->acysid) as $course)
{{$course->cname}} @if ($course->has_label) {{$course->label}}
@endif
{{$course->lshort_name}}
{{$course->ttname}}
( {{AppHelper::instance()->studentDueFileQuizzes(auth()->id(),$course->coffid)}})
{{--
( {{AppHelper::instance()->studentDueAssignments(auth()->id(),$course->coffid)}})
( {{AppHelper::instance()->totalCourseMaterialsCount($course->coffid)}})
--}}
@endforeach @empty

You are not enrolled at any courses yet, Enroll now

@endforelse
@endsection