= $this->extend('layout/management_layout') ?>
= $this->section('content') ?>
Course Materials
Uploaded Materials
| Title |
File |
Uploaded At |
Actions |
'Lecture Notes 1', 'file' => 'lecture_notes_1.pdf', 'uploaded_at' => '2023-01-10'],
['title' => 'Assignment 1', 'file' => 'assignment_1.pdf', 'uploaded_at' => '2023-01-12'],
// Add more materials as needed
];
foreach ($courseMaterials as $material) {
echo "
| {$material['title']} |
{$material['file']} |
{$material['uploaded_at']} |
Delete
|
";
}
?>
= $this->endSection() ?>