Im using Laravel 4.2. This maybe quite simple. When i get result from eloquent model using ->get(), i get this type of result
[{"name":"JOHN","tel":"12345"},{"name":"JANE","tel":"67890"}]
And I want to convert to this format
[["JOHN","12345"],["JANE","67890"]]
I've been struggling with this issue and I don't know what exact keyword to search for.