Blade template: Title does not reflect course name
Opened this issue · 0 comments
PWA-GouldA commented
Just did a little hunting, and noted that the course_enroll.blade.php
file does not collect the course name for insertion into the title:
<title>Panel Structure</title>
Replace with:
<title>{{ Request::segment(2) }}</title>
to give course slug in title.
Better would be to have the Course Title as saved in system rather than the slugged version.