I want to create a select box like the one below using illuminate\\html :
I was trying to do the same thing in Laravel 5.8 and got an error about calling pluck statically. For my solution I used the following. The collection clearly was called todoStatuses.
Status: {{ Form::select('status', $todoStatuses->pluck('status', 'id'), null, ['placeholder' => 'Status']) }}