Lucas F. Santana
Results
1
issues of
Lucas F. Santana
Hello guys, I'm trying to limit a many to many relationship with the following code: ```php $latest = Manga::including(['chapters' => function($q) { $q->descending('number'); $q->limit(1); }])->limit(24)->all(); ``` query result: ```javascript [...
feature
question