@extends('layouts.admin') @section('title', 'Manage Study Notes') @section('content')

Manage Study Notes

+ Upload New Study Note
@if(session('success')) @endif
@forelse($studyNotes as $note) @empty @endforelse
Class Subject Title File Topic Downloads Order Status Actions
{{ $note->classModel->name }} {{ $note->subject ? $note->subject->name : '-' }} {{ $note->title }} {{ $note->file_name }}
{{ number_format($note->file_size / 1024, 2) }} KB
{{ $note->topic ?? '-' }} {{ $note->download_count }} {{ $note->order }} @if($note->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No study notes found. Upload one.
@endsection