Skip to content

Instantly share code, notes, and snippets.

@khrlimam
Created May 8, 2018 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khrlimam/369160ef30c27e8191b427609a8bbc37 to your computer and use it in GitHub Desktop.
Save khrlimam/369160ef30c27e8191b427609a8bbc37 to your computer and use it in GitHub Desktop.
Laravel Irham
<?php
$data = Model::all();
$graphData = $data->map(function($item, $key) {
return [
'y' => $item->net_lending,
'name' => $item->nama_cab
];
});
{{ $graphData->toJson() }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment