I get this error when delete object in nested in nestedset in laravel8

826 Views Asked by At

i get this error when delete object in nested in nestedset in laravel

"Declaration of Kalnoy\Nestedset\BaseRelation::getRelationCountHash() should be compatible with Illuminate\Database\Eloquent\Relations\Relation::getRelationCountHash($incrementJoinCount = true)

2

There are 2 best solutions below

0
Dmitry Skibitsky On BEST ANSWER
0
Faesal On

2022 Update

You can fix this by upgrading to kalnoy/nestedset v6.0.0 now.

this solves the problem

composer.json

"require": {
   .
   . 
   "kalnoy/nestedset": "^6.0.0",
   .
   .
}