ulearnpro / ulearn

ULEARN - Open Source(FREE) LMS script in Laravel 5.8 and ReactJS 16.9
https://www.ulearnpro.com
MIT License
635 stars 290 forks source link

Blade template: Title does not reflect course name #9

Open PWA-GouldA opened 4 years ago

PWA-GouldA commented 4 years ago

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.