Laravel Collection Search Method Example

By Hardik Savani November 5, 2023 Category : Laravel

This article will help you how to search with collection object in laravel application. i will explain you how to use laravel collection search method. you can easily search with multidimensional array, by key and by value using search method of laravel collection. you can easily use with laravel 5, laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 application.

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

You can use collection search like as bellow syntax:

search()

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

Now we will see both examples bellow:

Example 1:

public function index()

{

$myArray = [34, 33, 36, 37];

$myArray = collect($myArray);

$result = $myArray->search(33);

dd($result);

}

Output:

1

Example 2:

public function index()

{

$myArray = [34, 33, 36, 37];

$myArray = collect($myArray);

$result = $myArray->search(function ($value, $key) {

return $value > 34;

});

dd($result);

}

Output:

2

I hope it can help you...

Shares