Skip to content

Instantly share code, notes, and snippets.

@vrkansagara
Forked from sineld/optgroup.php
Last active November 10, 2016 06:14
Show Gist options
  • Save vrkansagara/e9b813cfa01e16769091572e74716e43 to your computer and use it in GitHub Desktop.
Save vrkansagara/e9b813cfa01e16769091572e74716e43 to your computer and use it in GitHub Desktop.
Laravel: Using form::select with <optgroup>
<?php
//Source: http://forums.laravel.com/viewtopic.php?id=2807
Route::get('optgroup', function()
{
$eat_options = array(
'animals' => array(
'cats',
'dogs',
'monkeys',
),
'robots' => array(
'bender',
'johnny 5',
'metal gear',
),
);
echo Form::select( 'thing_to_eat', $eat_options, Input::old( 'thing_to_eat' ));
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment