Skip to content

Instantly share code, notes, and snippets.

@vades
Last active September 22, 2022 13:13
Show Gist options
  • Save vades/2b294523db53569ffe6f7d6804cc4e7e to your computer and use it in GitHub Desktop.
Save vades/2b294523db53569ffe6f7d6804cc4e7e to your computer and use it in GitHub Desktop.
Convert JSON data to Eloquent collection in Laravel application

Convert JSON data to Eloquent collection in Laravel application

$collection = collect(json_decode($response));
$items = $collection->where('id', 25);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment