laravel mongodbでグルーピングしたキーでソート mongodb

mongodbでグルーピングしたキーでソート(larabel使用時)
<br>
以下、hostnameでグルーピングしている場合、その名前でソート。逆の場合(desc)は、-1にする
<br>
<pre class= brush:php >
&#36;posts2 = Post::raw(function (&#36;collection) &#123;
return &#36;collection->aggregate([
[
&#36;match => [
rtype => rtype_2
]
]
[
&#36;group => [
_id => [
hostname => &#36;hostname
]
count => [
&#36;sum => 1
]
]
]
[
&#36;sort => [
_id => 1
]
]
]);
&#125;);
</pre>