I am trying to populate my select box from DB with this approach
{!! Form::select('worktypes', $worktypes->lists('name'), null, ['class' => 'col-md-2 form-control', 'required', 'placeholder' => '--auswählen']) !!}
But method lists() doesn't exist anymore in Laravel 5.3
Is there some other method for this?