<tr>
<td>Please <a style="color:blue; text-decoration: underline;" href="{{url(Config::get('secure.url'))}}password/{{$token}}">Click here </a>to reset your password</td>
</tr>
为什么要添加 null/xyz.example.com/password/3434xdsfs33
为什么它在 url 之前添加空值,请指导谢谢
如果您在配置文件中使用 Laravel 帮助程序或某些类方法,则一定有错误。您必须将变量值设置为字符串并使用 config(( 帮助程序获取 if。
<?php
return [
"url"=>"/test/url"
]
您的刀片
<tr>
<td>Please <a href="{{url(config('custom.url'))}}password/{{$token}}">Click here </a> to reset your password</td>
</tr>
尝试将其添加到您的configapp.php
文件中,例如在'url'
条目下:
'custom_url' => env('CUSTOM_URL', 'http://xyz.example.com'),
然后,将其添加到您的.env
文件中,该文件应位于Laravel项目根目录中:
CUSTOM_URL=http://xyz.example.com
然后,在代码中使用它:
<tr>
<td>Please <a style="color:blue; text-decoration: underline;" href="{{Config::get('custom_url')}}password/{{$token}}">Click here </a>to reset your password</td>
</tr>