Laravel Tutorials

Laravel Fluent isEmpty and isNotEmpty Methods

Published
Laravel Fluent isEmpty and isNotEmpty Methods image

The Fluent class now includes isEmpty() and isNotEmpty() methods for checking whether an instance contains data.

Previously, checking if a Fluent instance held any data required indirect approaches:

use Illuminate\Support\Fluent;
 
$fluent = new Fluent(['name' => 'Laravel News']);
 
if (count($fluent->toArray()) > 0) {
// Has content
}
 
if (isset($fluent->name) || isset($fluent->url)) {
// Has some content
}

The new methods provide direct boolean checks:

$populated = new Fluent(['name' => 'Laravel News', 'url' => 'https://laravel-news.com']);
$empty = new Fluent();
 
$populated->isEmpty(); // false
$populated->isNotEmpty(); // true
 
$empty->isEmpty(); // true
$empty->isNotEmpty(); // false

Configuration processing shows practical usage:

use Illuminate\Support\Fluent;
 
class ConfigurationProcessor
{
public function processSection(Fluent $config)
{
if ($config->isEmpty()) {
return $this->getDefaultConfiguration();
}
 
return $this->buildConfigurationArray($config);
}
 
public function mergeConfigurations(array $sections)
{
$merged = new Fluent();
 
foreach ($sections as $section) {
if ($section->isNotEmpty()) {
$merged = $merged->merge($section->toArray());
}
}
 
return $merged->isNotEmpty() ? $merged : $this->getDefaultConfiguration();
}
}

The methods work for conditional logic without array conversion:

if ($configData->isNotEmpty()) {
$this->processConfiguration($configData);
} else {
$this->loadDefaultConfiguration();
}

These methods eliminate the need to convert Fluent instances to arrays or check individual properties just to determine if the instance contains any data.

Harris Raftopoulos photo

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

Sponsored

laravelcloud logo
Laravel Cloud

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

Visit Laravel Cloud

The latest

View all →
Laravel Rulebook: Business Rules That Change by Date image

Laravel Rulebook: Business Rules That Change by Date

Read article
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article