laravel-nestedset
laravel-nestedset copied to clipboard
Add UUID support
This feature introduces support for UUIDs in the nestedSetWithUuid macro:
Schema::create('table', function (Blueprint $table) {
...
$table->nestedSetWithUuid();
});
This feature is tested under the same test cases as the auto-increment IDs, ensuring consistency across both ID types.