Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created March 3, 2021 00:05
Show Gist options
  • Select an option

  • Save fatihtoprak/bad9accdced4c558702a76a207db8b9c to your computer and use it in GitHub Desktop.

Select an option

Save fatihtoprak/bad9accdced4c558702a76a207db8b9c to your computer and use it in GitHub Desktop.
<?php
$collection = collect([
['user_id' => 1, 'product' => 'Macbook Pro'],
['user_id' => 2, 'product' => 'Apple Watch'],
]);
$collection->implode('product', ', ');
// Macbook Pro, Apple Watch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment