Yii v2 snippet guide

Comparing #128 with #129

Revision #129 was created by rackycz rackycz on Oct 4, 2019, 12:00:30 PM.

contact

Content

[...]
$model = new Contact();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
// ...
```
- Open the new contact model and add one attribute, 2 rules

 
```php public $verifyCode; // ...   ['verifyCode', 'captcha'],   ['email', 'email'],

// and translation for Captcha
'verifyCode' => Yii::t('app', 'Verification'),
```
[...]