lascoff
lascoff

Reputation: 1331

Laravel nested information

I am using larval and calling a view from a url like this:

a href="{{ URL::to('questions/MC', '155', false); }}" class="save" id="mc"><span        class="questionTypes"

The 155 needs to be dynamic like this:

{{ $chapter }}

I tried this:

a href="{{ URL::to('questions/MC', '{{ $chapter }}', false); }}" class="save" id="mc"><span class="questionTypes"

This did not work can anyone help?

Upvotes: 1

Views: 49

Answers (2)

The Alpha
The Alpha

Reputation: 146191

You may try this too, using Laravel's HTML::link()

{{ Html::link("questions/MC/$chapter", "ChapterOne", array("class" => "save", "id" => "mc")) }}

Upvotes: 1

mewm
mewm

Reputation: 1277

Try this

<a href="{{ URL::to('questions/MC', $chapter, false); }}" class="save" id="mc">

When you encounter problems simliar to this, try think of {{ as <?php echo

Upvotes: 2

Related Questions