Does anybody know how can I set in my select box the first option to empty value?
I\'m getting the data from my DB, and I would like to set the option by default as \"P
For a Laravel 5 collection, you may need to convert the collection to array first.
'Please Select']; $users = $defaultSelection + $users->toArray();?>
and apply $users as
{!! Form::select('user', $users); !!}