@extends('Layouts.Application') @section('MainContent')
Student Syllabus
NAME : {{Auth::user()-> full_name}} ID : {{ $studentID->system_generated_student_id }}
ROLL : {{ $studentID->roll_no }} CLASS : {{ $studentID->ClassName }} SECTION : {{ $studentID->SectionName }} GROUP : {{ $studentID->GroupName }}
@if(isset($Syllabus)) @foreach($Syllabus as $key => $irt) @endforeach @endif
Sl Date Title Subject Image View
/File Download
{{ $key+1 }} {{ date('Y-m-d',strtotime($irt->create_time)) }} {{ $irt->syllabus_title }} {{ $irt->name }} @if (count($irt->images)) {{ $irt->syllabus_title }} @endif @if ($irt->syllabus_file && file_exists('uploads/syllabus/' . $irt->syllabus_file)) @endif
@endsection