I created an appends attribute in Laravel Model, from the code below.
protected $appends = array(\'total\'=>\'\');
And I set the returne
You can use the sortBy method from collections.
$products = Product::all(); $products = $products->sortBy('total');