Laravel Collection Implode Method Example

By Hardik Savani April 16, 2024 Category : Laravel

Today, laravel collection implode example is our main topic. i would like to show you laravel collection implode key value. Here you will learn laravel eloquent implode. you can see laravel implode collection example.

The implode method will help to generate string using glue with given argument key.

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

$key,

$glue = null

);

Example 1

public function index()

{

$collection = collect(["one", "two", "three", "four", "five"]);

$output = $collection->implode('-');

dd($output);

}

Output:

one-two-three-four-five

Example 2

public function index()

{

$collection = collect([

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

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

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

]);

$output = $collection->implode('name', ', ');

dd($output);

}

Output:

Hardik, Paresh, Rakesh

I hope it can help you...

Shares