我正在尝试将greggilbert/recaptcha与我的联系表单一起使用,我正在Class 'Recaptcha' not found
。
我在apper.jp中添加了Greggilbert\Recaptcha\RecaptchaServiceProvider::class,
到app.php中的别名,之后在composer.json中请求了包,然后像自述文件那样更新。
这是我的联系表格:
'Recaptcha' => Greggilbert\Recaptcha\Facades\Recaptcha::class,
感谢。
答案 0 :(得分:1)
通过运行php artisan config:clear
然后重新运行php artisan vendor:publish --provider="Greggilbert\Recaptcha\RecaptchaServiceProvider"
答案 1 :(得分:1)
您似乎已经找到了解决方案,但对于下一个会遇到同样问题的人,请记住运行composer dump-autoload
,在这种情况下,遇到配置缓存问题时,请运行命令{ {1}}。
答案 2 :(得分:0)
尝试在课程前添加反斜杠(\
):
{!! \Recaptcha::render() !!}
这可确保您位于创建提供程序的根命名空间中。