Laravel 5 Collections: Sort a Collection in Descending Order With sortByDesc
The sortByDesc method operates exactly the same as the sortBy method. The only differences is that the sortByDesc method does not define a $descending parameter. The sortByDesc method internally makes a call to the sortBy method passing true as...