I have ecommerce laravel application.
Laravel Framework 8.83.8
PHP v8.0.1
I have done
php artisan config:cache
php artisan route:cache
php artisan view:cache
I deployed it on Cloudways (Digital Ocean) via Git. but when I try to run my website it shows error
Error Class "Laravel\Fortify\Features" not found
I have used fortify features in 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,
]),
],
When I comment out all Fortify features then it shows another error Jetstream features not found.
I can't understand where is the problem. Please help me to solve this issue.
To start using fortify you need first ,install Fortify using the Composer package manager
then you need to, publish Fortify's resources using the vendor:publish command:
then you should migrate your DB
for more info please check Laravel Fortify Installation