Skip to main content
Category:

Laravel Collection Concat Method

 

I will give you simple example of concat colletion in laravel. so you can easily use it with your laravel 5, laravel 6, laravel 7 and laravel 8 application. so let's see bellow example that will helps you lot.

 

Count Syntax:

$collecton->concat(

Array OR Collection

);

 

Laravel Collection concat() Example

public function index()

{

     $collectionA = collect(["One"]);

     $collectionB = collect(["Two"]);

     $collectionC = collect(["Three"]);

    $collection = $collectionA->concat($collectionB)->concat($collectionC);

    dd($collection);

}

 

Output:

Illuminate\Support\Collection Object

(

[items:protected] => Array

(

[0] => One

[1] => Two

[2] => Three

)

)

 

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook