@extends('theme.master') @section('title', 'Study Material') @section('content') Study Material @include('admin.message') Add PDF # Course Note File @foreach ($materials as $index => $material) {{ $index + 1 }} {{ $material->course->title ?? 'N/A' }} {{ $material->note }} View File @endforeach @if ($materials->isEmpty()) No materials found for the selected course. @endif @endsection