Skip to content

Instantly share code, notes, and snippets.

@renalpha
Created June 26, 2019 12:45
Show Gist options
  • Save renalpha/34998ba3ab741ad6b72fdaae7a56f023 to your computer and use it in GitHub Desktop.
Save renalpha/34998ba3ab741ad6b72fdaae7a56f023 to your computer and use it in GitHub Desktop.
Laravel Magicsuggest map ->pluck
<?php
json_encode($products->map(function ($data) {
$result['id'] = $data->id;
$result['name'] = $data->title;
return $result;
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment