Laravel Collection Search Method Example
In this post we will give you information about Laravel Collection Search Method Example. Hear we will give you detail about Laravel Collection Search Method ExampleAnd how to use it also give you demo for it if it is necessary.
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 and laravel 6 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…
Hope this code and post will helped you for implement Laravel Collection Search Method Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs