Reputation: 961
How to add css to Laravel Collective Form::select elemet in the following format
Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, ['placeholder' => 'Pick a size...']);
Upvotes: 0
Views: 348
Reputation: 3702
You can class as fourth parameter like ['class' => 'your_define_class']
Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, ['placeholder' => 'Pick a size...'],['class' => 'your_define_class']);
Try this
Upvotes: 1