I need to run this in laravel.
db.blog.aggregate([
{
$project :
{
likes_count: {$size: { "$ifNull": [ "$like", [] ] } }
}
},
{
$sort: {"likes_count":-1}
}
])
How to implement this using jenssegers/laravel-mongodb package? Thank you