Conditions | 1 |
Paths | 1 |
Total Lines | 31 |
Code Lines | 24 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | Form::component( |
||
17 | 'bsText', |
||
18 | 'components.form.text', |
||
19 | ['name', 'label' => null, 'value' => null, 'attributes' => []] |
||
20 | ); |
||
21 | Form::component( |
||
22 | 'bsEmail', |
||
23 | 'components.form.email', |
||
24 | ['name', 'label' => null, 'value' => null, 'attributes' => []] |
||
25 | ); |
||
26 | Form::component( |
||
27 | 'bsTextarea', |
||
28 | 'components.form.textarea', |
||
29 | ['name', 'label' => null, 'value' => null, 'attributes' => []] |
||
30 | ); |
||
31 | Form::component('bsPassword', 'components.form.password', ['name', 'label' => null, 'attributes' => []]); |
||
32 | Form::component('bsCheckbox', 'components.form.checkbox', [ |
||
33 | 'name', |
||
34 | 'value' => 1, |
||
35 | 'checked' => null, |
||
36 | 'label' => null, |
||
37 | 'attributes' => [] |
||
38 | ]); |
||
39 | Form::component( |
||
40 | 'bsInputGroup', |
||
41 | 'components.form.input-group', |
||
42 | ['name', 'label' => null, 'value' => null, 'attributes' => []] |
||
43 | ); |
||
44 | } |
||
45 | } |
||
46 |