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
There are 2 methods to do this:
{{ Form::select('user', array('default' => 'Please select one option') + $users, 'default') }}
Or
Please select one option @foreach($users as $user) {{ $user->name }} @endforeach