Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexeevdv/yii2-sluggable-input-widget
https://github.com/alexeevdv/yii2-sluggable-input-widget
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexeevdv/yii2-sluggable-input-widget
- Owner: alexeevdv
- Created: 2017-06-06T19:17:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T21:37:08.000Z (over 7 years ago)
- Last Synced: 2024-11-22T16:30:25.825Z (2 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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',
]);// ...
```