Error while run migrate starterkit v8.2.6
This error comes up when i run php artisan migrate:fresh --seed
Access to undeclared static property Spatie\Permission\PermissionRegistrar::$pivotPermission at database\migrations\2023_06_11_075700_create_permission_tables.php:54
Replies (1)
Hi Yoga Septiandi
There's an update from the Laravel Permission library. To resolve the issue, please follow these steps as workaround:
Update the package:
composer update Remove the old migration file:
Delete the file named *_create_permission_tables.php.
Publish the updated migration file:
Run the command:
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider" Now, try running the migration again with:
php artisan migrate These steps should resolve the error you're encountering.
Best regards,