Laravel para selecionar / dropdown

Preencha uma caixa de seleção com o id e nome de tudo em uma tabela (exceto o item atual).

// Controller
public function edit($id)
{
$group
= $this->group->find($id);

// Get a list of other groups, to select as the parent of this group
$group_list
= [''=>'Please select] + Group::where('id', '!=', $id)->lists('name', 'id');

return View::make('
groups.edit', compact('group', 'group_list'));
}
// View
<li>
{{ Form::label('parent_id', 'Group:') }}
{{ Form::select('parent_id', $group_list) }}
</li>