NestableCollection icon indicating copy to clipboard operation
NestableCollection copied to clipboard

A Laravel Package that extends Eloquent\Collection to handle nested items following adjacency list model.

Results 2 NestableCollection issues
Sort by recently updated
recently updated
newest added

I am getting the following error while installing on laravel 10: ``` Problem 1 - Root composer.json requires typicms/nestablecollection ^2.0.1 -> satisfiable by typicms/nestablecollection[2.0.1]. - typicms/nestablecollection 2.0.1 requires illuminate/database ~9.0...

I'm using NestableTrait in my model. I want to use where to select some of the rows. My model is `Category` `Category::where('name', "Clothes");` works fine. But if I want to...