@extends('layouts.app') @section('title', $class->subject->name . ' Materials') @section('page-title', $class->subject->name . ' - Study Materials') @section('header-buttons') Back @endsection @section('content')
Materials for {{ $class->subject->name }} - {{ $class->batch->name }}

Teacher: {{ $class->teacher->user->name }}

{{ $class->status }}
@if($materials->count() > 0)
@foreach($materials as $material) @endforeach
Title Uploaded By File Info Upload Date Actions
{{ $material->title }} {{ $material->teacher->user->name }} {{ $material->file_extension }}
{{ $material->file_size_formatted }}
{{ $material->created_at->format('M d, Y') }}
@else
No materials available for this class

The teacher hasn't uploaded any materials yet.

@endif
@endsection