I am trying to pass multiple parameters to the URL class in Laravel 4. I've tried the following code:
<li>
<a href="{{ URL::to('questions/', $chapter->id, false); }}">
<span>Chapter {{ $chapter->chapter_num }}: {{ $chapter->name }}</span>
</a>
</li>
This seems to work for one parameter. How do I pass multiple parameters?