harinsamaranayake
harinsamaranayake

Reputation: 961

How to add CSS to Laravel Collective Form::select element

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

Answers (1)

albus_severus
albus_severus

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

Related Questions