How to sort records in alphabetical order in laravel?
public function index() { $comproducts = Comproduct::paginate(3); $items = Item::orderBy(\'nam
That's how you sort it, orderBy() comes after all():
orderBy()
all()
$items = Item::all()->sortBy('name');
Reference: https://laravel.com/docs/5.5/collections