PHP code example of mrssoft / yii2-form-widgets
1. Go to this page and download the library: Download mrssoft/yii2-form-widgets library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mrssoft / yii2-form-widgets example snippets
$form->field($order, 'name')->widget(NameInputWidget::class);
$form->field($order, 'phone')->widget(PhoneInputWidget::class);
$form->field($order, 'password')->widget(PasswordRevealWidget::class);
public function rules()
{
return [
[['phone'], '> 10],
...
];
}
php composer.phar