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(); });