Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Can someone explain why my variable isn't printing using blade in laravel?

<h3>Welcome <?php if(isset($name)){ {{{ $name }}} }else{echo 'user';}?>, click here to login </h3>

^^^ This is the code, I was under the impression that blade allows you to print variables using the triple curly braces. This way js or other malicious code can't be passed into your variable.

I have tried this but I get thrown an error stating too many curly braces, has something changed in laravel 5 (thats what i am using)?

<h3>Welcome <?php if(isset($name)){ {{{ $name }}} }else{echo 'user';}?>, click here to login </h3>

1 Answer

<h3>Welcome <?php if(isset($name)){ {{{ $name }}} }else{echo 'user';}?>, click here to login </h3>