Skip to content

Instantly share code, notes, and snippets.

@Tech-Emiretus
Created May 23, 2018 22:03
Show Gist options
  • Save Tech-Emiretus/da7cd40a010a71cbcd84ba5ecabc2816 to your computer and use it in GitHub Desktop.
Save Tech-Emiretus/da7cd40a010a71cbcd84ba5ecabc2816 to your computer and use it in GitHub Desktop.
Get only the product_name in a new array
<?php
$data = Product::where('type', 'Ring')->get();
return $data->pluck('product_name');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment