Skip to content

Instantly share code, notes, and snippets.

@sabid
Last active August 29, 2015 14:03
Show Gist options
  • Save sabid/7f33c55fc814e96d87cb to your computer and use it in GitHub Desktop.
Save sabid/7f33c55fc814e96d87cb to your computer and use it in GitHub Desktop.
Laravel Form::select() Populate fron data base
Controller Create
$ciudades_opciones = \Ciudad::orderBy('nombre', 'asc')->lists('nombre','id');
View of create
{{ Form::select('ciudad_id', array('default' => 'Seleccione') + $ciudades_opciones, null, array('class' => 'form-control select2me')) }}
Note: the null options is the default value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment