We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
course_enroll.blade.php
<title>Panel Structure</title>
Replace with: <title>{{ Request::segment(2) }}</title> to give course slug in title.
<title>{{ Request::segment(2) }}</title>
Better would be to have the Course Title as saved in system rather than the slugged version.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: