Add Class to select element on Laravel
问题 I have this problem, I can't find the way to add class attribute in this Dropdown box {{Form::select('bancada', Bancada::lists('nombre','idBancada'))}} I have tried various syntax, but can not get it to work. Any suggestions? Thanks 回答1: Use the forth parameter to add attributes to your element. {{Form::select('bancada', Bancada::lists('nombre','idBancada'), null, ['class' => 'my_class'])}} Take a look at the source ( $options is the same as attributes for your element). 回答2: {{ Form::select(