php artisan migrate:fresh --seed
Hello,
this
php artisan migrate:fresh --seed
return one error
Access to undeclared static property Spatie\Permission\PermissionRegistrar::$pivotPermission
Replies (1)
Hi
The most likely cause is an outdated version of the package. Try to update it to the latest stable release:
composer update spatie/laravel-permission After updating, clear Laravel's cache and configuration to changes take effect.
php artisan cache:clear
php artisan config:clear Thanks