Laravel Collection Flip Method Example

By Hardik Savani April 16, 2024 Category : Laravel

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...

Shares