Question

I have the following code in email.blade.php

 {{ URL::to('password/reset' , array($token)) }}

Which generates

  <a href="password/reset/hfhfjhghsasdgsd">password/reset/hfhfjhghsasdgsd</a>

How could I make it look like this:

  <a href="password/reset/hfhfjhghsasdgsd" style="color:blue">Reset Password</a>

Please help

Thanks

Was it helpful?

Solution

Use link_to helper:

{{ link_to('password/reset/hfhfjhghsasdgsd', 'Reset Password', array('style' => 'color:blue')) }}

Or

{{ HTML::link('password/reset/hfhfjhghsasdgsd', 'Reset Password', array('style' => 'color:blue')) }}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top