Dinesh Uprety
@dineshuprety ·
Public
Sort computed values in memory
PHPOriginal 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