Laravel Tutorials

Custom Key Sorting in Laravel Collections

Published
Custom Key Sorting in Laravel Collections image

Laravel's sortKeysUsing method provides fine-grained control over how collection keys are arranged, enabling you to implement custom sort logic beyond standard alphabetical ordering.

This feature proves especially valuable when working with configuration arrays, form fields with specific display orders, or any associative data where key sequence matters for processing or display.

$collection->sortKeysUsing('strnatcasecmp');
 
// or
 
$collection->sortKeysUsing(function ($a, $b) {
return $a <=> $b;
});

Here's an example of implementing prioritized menu ordering:

<?php
 
namespace App\Services;
 
use Illuminate\Support\Collection;
 
class NavigationManager
{
public function getOrderedNavigation(array $menuItems): Collection
{
return collect($menuItems)
->sortKeysUsing(function ($a, $b) {
// Extract position prefixes (pos1_, pos2_, etc.)
$positionA = $this->extractPosition($a);
$positionB = $this->extractPosition($b);
 
// If both have position prefixes, sort numerically
if ($positionA !== null && $positionB !== null) {
return $positionA <=> $positionB;
}
 
// Position prefixes come before unprefixed keys
if ($positionA !== null) return -1;
if ($positionB !== null) return 1;
 
// Group items by section
$sectionA = explode('_', $a)[0];
$sectionB = explode('_', $b)[0];
 
if ($sectionA !== $sectionB) {
// Custom section order
$sections = ['dashboard', 'users', 'content', 'settings'];
$indexA = array_search($sectionA, $sections);
$indexB = array_search($sectionB, $sections);
 
if ($indexA !== false && $indexB !== false) {
return $indexA <=> $indexB;
}
}
 
// Default to natural case-insensitive sort
return strnatcasecmp($a, $b);
});
}
 
private function extractPosition(string $key): ?int
{
if (preg_match('/^pos(\d+)_/', $key, $matches)) {
return (int) $matches[1];
}
 
return null;
}
}

The sortKeysUsing method transforms how you arrange collection data, enabling semantic ordering based on your application's specific requirements.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article