@extends('student.layout') @section('title','Study Materials') @section('page-title','Study Materials') @section('content') @if($materials->isEmpty())
No study materials yet
Your teacher will upload materials here. Check back soon!
@else @foreach($materials as $topic => $items)

{{ $topic ?: 'General' }}

{{ $items->count() }} items
@foreach($items as $m)
{{ $m->title }}
@if($m->description)
{{ $m->description }}
@endif
{{ $m->course }} {{ $m->created_at->format('d M Y') }}
@if($m->file_path) Download @elseif($m->external_url) Open @endif
@endforeach
@endforeach @endif @endsection