Laravel Collection Flip Method Example
This example is focused on laravel collection flip example. we will help you to give example of collection flip laravel. We will use laravel swap key value array. This article will give you simple example of laravel collection swap key value.
The flip method will help to swaps the collection's keys with their values.
I will give you simple example of flip colletion in laravel. so you can easily use it with your laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application. so let's see bellow example that will helps you lot.
Syntax:
$collecton->flip();
Laravel Collection flip() Example
public function index()
{
$collection = collect([
1 => 'One',
2 => 'Two',
3 => 'Three',
4 => 'Four',
5 => 'Five'
]);
$output = $collection->flip();
dd($output);
}
Output:
Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[One] => 1
[Two] => 2
[Three] => 3
[Four] => 4
[Five] => 5
)
)
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Collection Map Method Example
- Laravel Collection Except() Method Example
- Laravel Collection Duplicates Method Example
- Laravel Collection diff(), diffAssoc() and diffKeys() Example
- Laravel Collection Concat Method Example
- Laravel Collection Count and CountBy Method Example
- Laravel Collection GroupBy with Examples
- Laravel Collection first() and firstWhere() Methods Example
- Laravel Collection contains() and containsStrict() Methods Example