①:Collectionの並び替え
Comment::get()->sortByDesc('created_at')
※getするとCollectionに変換されている。
②:Modelの並び替え
Comment::orderBy('created_at', 'desc')
Just another WordPress site
Comment::get()->sortByDesc('created_at')
※getするとCollectionに変換されている。
Comment::orderBy('created_at', 'desc')