@include('teacher.components.navbar', $data)
@if (session('success'))
@endif
| Sr.No |
Teacher's Name |
Title |
Description |
Course |
File |
Action |
@foreach($syllabi as $index => $syl)
| {{ $index + 1 }} |
{{$syl->teacher_id}} |
{{ $syl->title }} |
{{ $syl->description }} |
{{ $syl->course->name ?? 'N/A' }} |
@if($syl->file)
Download
@else
No file
@endif
|
|
@endforeach
@include('teacher.components.footer')
@include('teacher.components.footer_link')