I think you are looking for toArray() :
User::all()->toArray();
http://four.laravel.com/docs/eloquent#converting-to-arrays-or-json
To get an array that can be used directly with Form::select() , you can use the following:
$contacts = Contact::orderBy('name')->lists('name', 'id'); $contacts = count($contacts) > 0 ? $contacts : array(); {{ Form::select('contact', $contacts) }}
Holger weis
source share