Jump24 - Laravel Developers that Click into Place. Never outsourced. Never offshored. Always exceptional.

Laravel Array Helpers Every Developer Should Know About

Published on by

Laravel Array Helpers Every Developer Should Know About image

Laravel is known for its elegance, simplicity, and expressiveness. One of the most powerful features of Laravel is its helper functions. Laravel's array helpers are an essential tool for developers working with arrays of data.

This article will explore some Laravel array helper functions that every developer should know. These helpers can save time and make working with arrays more manageable. We'll cover join(), keyBy(), get(), first(), last(), and pluck(). So, let's dive in and see what Laravel's array helpers have to offer!

Array Join

You might be thinking, "why do I need this helper when I can use join() or implode()?"

use Illuminate\Support\Arr;
 
$stack = ['Tailwind', 'Alpine', 'Laravel', 'Livewire'];
 
Arr::join($stack, ', ');
// Tailwind, Alpine, Laravel, Livewire
 
implode($stack, ', ');
// Tailwind, Alpine, Laravel, Livewire

The above work exactly the same, so I'll leave it up to you to decide which style you prefer.

Where the join() helper really comes in handy is when you want the last value to use a separate joining string:

use Illuminate\Support\Arr;
 
$stack = ['Tailwind', 'Alpine', 'Laravel', 'Livewire'];
 
Arr::join($stack, ', ', ', and');
// Tailwind, Alpine, Laravel, and Livewire

Keyed Array data

Sometimes you'll take an array of data (i.e., multiple products) and key the data by a given product attribute. That way, you can conveniently target data for a given key.

You might have written something like the following, creating a new variable and stuffing the data into it by a keyed value:

$array = [
['product_id' => 'prod-100', 'name' => 'Desk'],
['product_id' => 'prod-200', 'name' => 'Chair'],
];
 
$keyed = [];
 
foreach ($array as $value) {
$keyed[$value['product_id']] = $value;
}
 
/*
[
'prod-100' => ['product_id' => 'prod-100', 'name' => 'Desk'],
'prod-200' => ['product_id' => 'prod-200', 'name' => 'Chair'],
]
*/

Using the Arr::keyBy() method, you can do the same thing with one line of code:

$keyed = Arr::keyBy($array, 'product_id');

Checking and Getting Data from an Array

The mighty Arr::get() method is simple to use, but contains a powerful "dot notation" you can use to get nested data easily:

use Illuminate\Support\Arr;
 
$data = [
'products' => [
'desk' => [
'name' => 'Oakendesk'
'price' => 599.00,
'description' => 'Solid oak desk built from scratch.'
],
],
];
 
// 599.00
Arr::get($data, 'products.desk.price');
 
// Returns false
Arr::has($data, 'products.desk.discount');
 
// Returns null
Arr::get($data, 'products.desk.discount');
 
// Returns custom default value if not found.
Arr::get($data, 'products.desk.discount', ['type' => 'percent', 'value' => 10]);

Getting the first or last element in an array

When you have an array and want to get the last element, you can reach for the end() function in PHP:

$array = [100, 200, 300, 110];
 
end($array);

If your array is empty, though, you will get false instead:

$array = [];
end($array); // false

Using Laravel's last() helper, you have multiple options when an array is empty:

use Illuminate\Support\Arr;
 
$array = [];
 
Arr::last($array); // null
 
// Provide a default
Arr::last($array, null, 100); // 100

Using Laravel's helper also enables you to pass a closure as a second argument as the condition for which element to return first or last respectively:

$array = [100, 200, 300, 110];
 
Arr::last($array, fn ($e) => $e > 110); // 300
Arr::first($array, fn ($e) => $e > 110); // 200

Simple but powerful API for the many situations you might find yourself in with getting the first or last element within array data.

Plucking Data from an Array

Sometimes you need to get one scalar piece of data from a collection of data (i.e., emails from users):

$array = [
['user' => ['id' => 1, 'name' => 'User 1', 'email' => 'user1@example.com']],
['user' => ['id' => 2, 'name' => 'User 2', 'email' => 'user2@example.com']],
];
 
$emails = [];
 
foreach ($array as $result) {
$emails[] = $result['user']['email'];
}
 
/*
[
"user1@example.com",
"user2@example.com",
]
*/

Laravel's Arr::pluck() helper makes this trivial:

Arr::pluck($array, 'user.email');

Learn More

I hope you have seen a theme: helpers replace redundant tasks with expressive syntax. I believe they have a few other benefits: we can tap into the extra power some of these methods provide when needed (i.e. a closure condition in first() and last()), and it avoids temporary variables and loops that create mental overhead for repetitive things.

Though on the surface, function helpers in any language can seem redundant from using the built-in language features; however, I hope you've seen how powerful they can make redundant things you'll need to do in many of your applications. We've only scratched the surface of everything available in the Arr class. Sometimes we need simple array helpers, and other times you'll want the power of collections.

If you're new to the Laravel framework, check out the Helpers documentation to learn about all the useful string and array helpers at your fingertips in Laravel projects. Likely, you'll want these helpers in other PHP projects that aren't using Laravel too!

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Laravel Code Review

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

Visit Laravel Code Review
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

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

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

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

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

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Laravel Cloud logo

Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Cloud
Acquaint Softtech logo

Acquaint Softtech

Acquaint Softtech offers AI-ready Laravel developers who onboard in 48 hours at $3000/Month with no lengthy sales process and a 100 percent money-back guarantee.

Acquaint Softtech
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Inertia v3 Upgrade Prompt and JSON Log Support in Laravel Boost v2.3.0 image

Inertia v3 Upgrade Prompt and JSON Log Support in Laravel Boost v2.3.0

Read article
Laracon AU Returns to Brisbane - Call for Speakers Now Open image

Laracon AU Returns to Brisbane - Call for Speakers Now Open

Read article
Detecting and Fixing Race Conditions in Laravel Applications image

Detecting and Fixing Race Conditions in Laravel Applications

Read article
LaraCopilot: Generate Laravel MVPs From a Single Prompt With AI image

LaraCopilot: Generate Laravel MVPs From a Single Prompt With AI

Read article
Model::withoutRelation() in Laravel 12.54.0 image

Model::withoutRelation() in Laravel 12.54.0

Read article
Tyro Checkpoint: Instant SQLite Snapshots for Laravel Local Development image

Tyro Checkpoint: Instant SQLite Snapshots for Laravel Local Development

Read article