n Laravel Collection Concat Method | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
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