如何为 Auth 控制器中创建的新方法定义路由
How to define route for new method created in Auth controller
我在 AuthController.php
中创建了名为 "getVarify" 的新方法
我可以使用
从浏览器访问此方法
"SITE_URL/auth/varify/VARIFICATION_CODE".
当我尝试在 .blade.php 文件中使用以下代码为标签创建 URL 时,出现错误。
{{ HTML::link('/auth/varify/'.$newlyCreatedUser->varification_code, 'Click to varify') }}
任何帮助将不胜感激。
在Laravel 5.~中默认不嵌入Html和Form。
在 composer.json 和 运行
的 require 部分添加以下行
composer update "illuminate/html": "5.*"
通过将以下值添加到提供者数组中,在 config/app.php 中注册服务提供者:
'Illuminate\Html\HtmlServiceProvider'
通过在别名数组中添加这两行来注册外观:
'Form'=> 'Illuminate\Html\FormFacade', 'HTML'=> 'Illuminate\Html\HtmlFacade'
我在 AuthController.php
中创建了名为 "getVarify" 的新方法我可以使用
从浏览器访问此方法"SITE_URL/auth/varify/VARIFICATION_CODE".
当我尝试在 .blade.php 文件中使用以下代码为标签创建 URL 时,出现错误。
{{ HTML::link('/auth/varify/'.$newlyCreatedUser->varification_code, 'Click to varify') }}
任何帮助将不胜感激。
在Laravel 5.~中默认不嵌入Html和Form。
在 composer.json 和 运行
的 require 部分添加以下行composer update "illuminate/html": "5.*"
通过将以下值添加到提供者数组中,在 config/app.php 中注册服务提供者:
'Illuminate\Html\HtmlServiceProvider'
通过在别名数组中添加这两行来注册外观:
'Form'=> 'Illuminate\Html\FormFacade', 'HTML'=> 'Illuminate\Html\HtmlFacade'