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

Queries on model doesn't work

Open MehdiAghighi opened this issue 4 years ago • 0 comments

i am using this package for comments but when i use the model to make a query with a where method on a column it gives no result !

for example

Comment::where("user_id", 2)->first()

returns null Nested Set Collection instance but i am sure i have a comment for this user in the database. also when i use

DB::table("comments")->where("user_id", 2)->first();

it works and gives me the record. but the model can't fetch the record.

UPDATE : also i checked any other where conditions doesn't work . even ->where("id", 1) doesn't work for example !

MehdiAghighi avatar Aug 07 '21 14:08 MehdiAghighi