Fresh code drop

Sort computed values in memory

PHP

Original CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks

PHP
CodeSnap // free canvas

Sort computed values in memory

<?php

// Good for an already-small collection.
$clients = Client::query()
    ->limit(100)
    ->get()
    ->sortBy('full_name');

// Further reading: https://laravel-news.com/eloquent-tips-tricks

Turn your code into a post.Five templates are free—no account needed.

Remix this snap