laravel-nestedset
                                
                                 laravel-nestedset copied to clipboard
                                
                                    laravel-nestedset copied to clipboard
                            
                            
                            
                        Fresh Install Laravel 11 $table->nestedSet(); Method Not Found.
Upon a fresh installation of laravel 11 along with this package, upon migration I recieve the errror nestedSet(); method not found.
Simply trying to run this migration :
Schema::create('categories', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('slug')->unique(); $table->nestedSet(); $table->timestamps(); });