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

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
NativePHP v4: Build Native iOS and Android UI in Blade image

NativePHP v4: Build Native iOS and Android UI in Blade

Read article
Laravel Lock: Distributed Locks for Models and Routes image

Laravel Lock: Distributed Locks for Models and Routes

Read article
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article