Laravel Tutorials

Handle Fluent Values as Arrays with Laravel's array() Method

Published
Handle Fluent Values as Arrays with Laravel's array() Method image

Laravel simplifies Fluent object value handling with the introduction of the array() method, providing a clean approach to convert values into arrays without manual casting or collection manipulation.

Working with Fluent objects often requires ensuring values are returned as arrays, especially when dealing with configuration data or dynamic properties. Previously, this involved manual casting or collection methods. The new array() method streamlines this process:

$fluent = new Fluent(['email' => 'admin@example.com']);
$emails = $fluent->array('email');
// Result: ['admin@example.com']

This method proves particularly valuable in settings management systems:

class SettingsManager
{
protected $settings;
 
public function __construct(array $config)
{
$this->settings = new Fluent($config);
}
 
public function getNotificationChannels(string $event)
{
// Always get channels as array
return $this->settings->array("alerts.{$event}.channels");
}
 
public function getTrustedHosts()
{
// Previously: (array) $this->settings->get('hosts')
// Or: $this->settings->collect('hosts')->all()
return $this->settings->array('trusted_hosts');
}
 
public function getBackupLocations()
{
// Single location or multiple will always return array
return $this->settings->array('backup_locations');
}
}

The array() method eliminates conditional checks and type casting, creating cleaner, more maintainable code when working with Fluent instances that need consistent array output.

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