I have registration form with activation. So the user register his accoount then he receive email with link to activate his account. The problem is that the link is appear in the email like text not like URL. What can be the problem? Here is activate.blade.php
Hello {{ $username }}<br><br>
Please activate your account using the following link<br><br>
---<br>
{{ $link }} <br>
---
And here is the AccountController mail send
Mail::send('emails.auth.activate', array(
'link' => URL::route('account-activate', $code),
'username' => $username),
function($message) use ($user) {
$message->to($user->email, $user->username)->subject('Activate your account');
});