ItSolutionStuff.com

Laravel Collection keys() Method Example

By Hardik Savani • April 16, 2024
Laravel

This simple article demonstrates of laravel eloquent keys example. In this article, we will implement a laravel keys collection. i explained simply about laravel get collection keys. we will help you to give example of laravel collection by key.

The keys() method will help to create new collection of collection keys.

I will give you simple example of keys() 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->keys();

Example 1

public function index()

{

$collection = collect([

"one" => ["id"=>1, "name"=>"Hardik", "role"=>"Admin"],

"two" => ["id"=>2, "name"=>"Paresh", "role"=>"Admin"],

"three" => ["id"=>3, "name"=>"Rakesh", "role"=>"User"],

]);

$output = $collection->keys();

dd($output);

}

Output:

Illuminate\Support\Collection Object

(

[items:protected] => Array

(

[0] => one

[1] => two

[2] => three

)

)

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

Laravel Collection isEmpty() and isNotEmpty() Method Example

Read Now →

Laravel Collection intersect() and intersectByKeys() Method Example

Read Now →

Laravel Collection Implode Method Example

Read Now →

Laravel Collection Has Method Example

Read Now →

Laravel Collection SortBy Tutorial with Examples

Read Now →

Laravel Collection Merge | How to Merge Two Eloquent Collection?

Read Now →

Laravel Collection Unique | Remove Duplicates from Collection Laravel

Read Now →

Laravel Collection Search Method Example

Read Now →

Laravel Collection Filter Method Example

Read Now →