ItSolutionStuff.com

Laravel Collection Filter Method Example

By Hardik Savani • April 16, 2024
Laravel

Here, we will learn how to use collection filter method in laravel application. i would like to give you simple examples of laravel collection filter method. we will use collection filter method by key, by value and remove null and empty values. we can easily use with laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application.

Laravel Collection object provide several methods that will help to write your own logic. here we will learn how to use filter method of laravel collection.

In this example i will give you two example one with multidimensional array collection object with filter pass student. Another example we be simple example that will help you to remove null, empty, empty array value from collection object.

You can use collection filter like as bellow syntax:

filter()

filter(function( 'You can write logic here' ))

Now we will see both examples bellow:

Example 1:

public function index()

{

$myStudents = [

['id'=>1, 'name'=>'Hardik', 'mark' => 80],

['id'=>2, 'name'=>'Paresh', 'mark' => 20],

['id'=>3, 'name'=>'Akash', 'mark' => 34],

['id'=>4, 'name'=>'Sagar', 'mark' => 45],

];

$myStudents = collect($myStudents);

$passedstudents = $myStudents->filter(function ($value, $key) {

return data_get($value, 'mark') > 34;

});

$passedstudents = $passedstudents->all();

dd($passedstudents);

}

Output:

array:2 [▼

0 => array:3 [▼

"id" => 1

"name" => "Hardik"

"mark" => 80

]

3 => array:3 [▼

"id" => 4

"name" => "Sagar"

"mark" => 45

]

]

Example 2:

public function index()

{

$myArray = collect([2, 3, 5, null, false, '', 0, []]);

$myfilterArray = $myArray->filter()->all();

dd($myfilterArray);

}

Output:

array:3 [▼

0 => 2

1 => 3

2 => 5

]

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Create Word Document File in Laravel?

Read Now →

Laravel Scout Algolia Search Example

Read Now →

Laravel Typeahead Search Example Tutorial

Read Now →

Laravel Multiple Where Condition Example

Read Now →

How to use Soft Delete in Laravel?

Read Now →

Laravel 8/7 Paginate with Collection or Array

Read Now →

Laravel Eloquent WhereNotIn Query Example

Read Now →

Laravel Global Scope Tutorial Example

Read Now →

Merge Multiple Collection Paginate in Laravel

Read Now →

How to Get Query Log in Laravel Eloquent?

Read Now →