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