lucid-slugify
lucid-slugify copied to clipboard
Generate unique slugs using your Lucid models
Hello there, When I tried create a new row I got this error. ` { "code": "ER_SP_DOES_NOT_EXIST", "errno": 1305, "sqlState": "42000", "sqlMessage": "FUNCTION database.REGEXP_SUBSTR does not exist", "sql": "select CAST(REGEXP_SUBSTR(slug,...
## Changes Add support for AdonisJS 6 No breaking changes, except the way we should import things : ```ts import slugify from '@adonisjs/lucid-slugify/decorator' class Post extends BaseModel { @column() @slugify({...
## Why this feature is required (specific use-cases will be appreciated)? Makes slugs working with non-english words / letters For example currently it turns `"Анна"` to `""` (emptry string), while...