php 错误类别“Laravel\Fortify\Features”未找到

9jyewag0  于 2023-04-28  发布在  PHP
关注(0)|答案(1)|浏览(151)

电子商务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。
我不明白问题出在哪里。请帮我解决这个问题。

5vf7fwbs

5vf7fwbs1#

要开始使用fortify,首先需要使用Composer包管理器安装Fortify

composer require laravel/fortify

然后,您需要使用vendor:publish命令发布Fortify的资源:

php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"

那么你应该迁移你的数据库

php artisan migrate

更多信息,请查看Laravel Fortify安装

相关问题