laravel-nestedset icon indicating copy to clipboard operation
laravel-nestedset copied to clipboard

Fresh Install Laravel 11 $table->nestedSet(); Method Not Found.

Open nedigitalsolutions opened this issue 8 months ago • 0 comments

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

nedigitalsolutions avatar Feb 10 '25 15:02 nedigitalsolutions