电子商务Laravel应用程序
Laravel Framework 8.83.8
PHP v8.0.1
我已经做了
php artisan config:cache
php artisan route:cache
php artisan view:cache
我通过Git在Cloudways(Digital Ocean)上部署了它。但当我尝试运行我的网站时,它显示错误
Error Class "Laravel\Fortify\Features" not found
Error image file
我在 fortify中使用了fortify功能。php
use Laravel\Fortify\Features;
use App\Providers\RouteServiceProvider;
'features' => [
Features::registration(),
Features::resetPasswords(),
Features::emailVerification(),
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication([
'confirmPassword' => true,
]),
],
当我注解掉所有的Fortify功能时,它会显示另一个错误Jetstream features not fount。
我不明白问题出在哪里。请帮我解决这个问题。
1条答案
按热度按时间5vf7fwbs1#
要开始使用fortify,首先需要使用Composer包管理器安装Fortify
然后,您需要使用vendor:publish命令发布Fortify的资源:
那么你应该迁移你的数据库
更多信息,请查看Laravel Fortify安装