Answers for "add key to collection laravel"

PHP
0

push key and value in laravel

public function index()
{
    $collection = collect(['id' => 1, 'name' => 'Hardik']);
  
    $collection->put('role', 'admin');
   
    $collection->all();
      
    dd($collection);
}
Posted by: Guest on December-29-2021
0

add data to the collection laravel

If you want to add a product into the array you can use:

$item['product'] = $product;
Posted by: Guest on October-16-2021

Code answers related to "add key to collection laravel"

Browse Popular Code Answers by Language