Answer the question
In order to leave comments, you need to log in
How to style select form in laravel?
There is a form in which it is necessary to select certain options through select. I have attached the form as a screenshot.
Can you tell me how should I style each element if I use Forms:: ?
For example, there is this code:
{!! Form::select('subscribe_id', array('5' => 'Демо-доступ', '6' => 'Доступ на 1 месяц 1500 руб.', '7' => 'Доступ на 3 месяца 3600 руб.','8' => 'Доступ на 1 год 12600 руб.'))!!}
Answer the question
In order to leave comments, you need to log in
Through a plugin like this one
{!! Form::select('subscribe_id', array(0 => 'Выберите тип подписки', '5' => 'Демо-доступ', '6' => 'Доступ на 1 месяц 1500 руб.', '7' => 'Доступ на 3 месяца 3600 руб.','8' => 'Доступ на 1 год 12600 руб.'),null,['class' => 'custom-class'])!!}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question