The pennant config is using stores and same when creating driver in FeatureManager, however, when configuring database driver, it reads from drivers which is not found.
According to the docs, we were asked to run php artisan vendor:publish --provider="Laravel\Pennant\PennantServiceProvider" and the migration will be published to the base database/migrations directory.
And after that when we run php artisan migrate, both migration files will be ran and causes error.
The pennant config is using
stores
and same when creating driver in FeatureManager, however, when configuring database driver, it reads fromdrivers
which is not found.According to the docs, we were asked to run
php artisan vendor:publish --provider="Laravel\Pennant\PennantServiceProvider"
and the migration will be published to the basedatabase/migrations
directory.And after that when we run
php artisan migrate
, both migration files will be ran and causes error.