Html helper

v3.0.6 2024-01-25 09:35 UTC

This package is auto-updated.

Last update: 2024-04-25 10:06:12 UTC


README

Checkbox

 Checkbox::create('name', '1')
 ->checked()
 ->render();

Select

 Select::create('name', [1 => 'option 1'])
 ->selected(1)
 ->class('form-control')
 ->render();