Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexeevdv/yii2-sluggable-input-widget


https://github.com/alexeevdv/yii2-sluggable-input-widget

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Installation
===

Preferred way to install this extension is via composer:

```bash
composer require alexeevdv/yii2-sluggable-input-widget 1.0.0
```

Usage
===

```php
field($model, 'title');

echo $form
->field($model, 'slug')
->widget(SluggableInputWidget::className(), [
'dependsOn' => 'title',
]);

// ...

```