how to content tow collection laravel code example
Example 1: add to collection laravel
$item = collect();
$item->push($product);
Example 2: laravel collection namespace
Illuminate\Database\Eloquent\Collection
$item = collect();
$item->push($product);
Illuminate\Database\Eloquent\Collection