PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
kris
/
laravel-form-builder
/
src
/
Kris
/
LaravelFormBuilder
/
Fields
<?php namespace Kris\LaravelFormBuilder\Fields; class ButtonGroupType extends FormField { /** * The path the template. * * @return string */ protected function getTemplate() { return 'buttongroup'; } /** * @inheritdoc */ public function render(array $options = [], $showLabel = true, $showField = true, $showError = true) { $options['splitted'] = $this->getOption('splitted', false); $options['size'] = $this->getOption('size', 'md'); $options['buttons'] = $this->getOption('buttons', []); return parent::render($options, $showLabel, $showField, $showError); } }
[+]
..
[-] TextareaType.php
[edit]
[-] StaticType.php
[edit]
[-] EntityType.php
[edit]
[-] ButtonType.php
[edit]
[-] SelectType.php
[edit]
[-] FormField.php
[edit]
[-] RepeatedType.php
[edit]
[-] CollectionType.php
[edit]
[-] ButtonGroupType.php
[edit]
[-] ChoiceType.php
[edit]
[-] ChildFormType.php
[edit]
[-] ParentType.php
[edit]
[-] CheckableType.php
[edit]
[-] InputType.php
[edit]