To repeat some other answers here, the code I just used with 5.6 is
{{ Form::select('status', ['Draft' => 'Draft', 'Sent' => 'Sent', 'Paid' => 'Paid'], $model->status, ['id' => 'status']) }}
To use the Form Assistant from LaravelCollective, I looked at https://laravelcollective.com/docs/master/html#drop-down-lists.
I also had a composer demand dependency as well so that I could use it in my projects
composer require "laravelcollective/html":"^5"
Finally, I changed my config/app.php and added the following to the $aliases array
'Form' => Collective\Html\FormFacade::class,
https://laravelcollective.com/docs/master/html should be consulted if any of the above stops working.
source share