Download the PHP package daaner/easy-slug without Composer
On this page you can find all versions of the php package daaner/easy-slug. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download daaner/easy-slug
More information about daaner/easy-slug
Files in daaner/easy-slug
Informations about the package easy-slug
EasySlug (easy creation of slugs for Laravel 5+)
Fix
- fix softDeleted tray
About
[ru] Простое создание уникального слага для Ларавел 5+
[en] Simple creation of a unique slug for Laravel 5+
Установка
composer require daaner/easy-slug
[ru]
- В шапке модели
use EasySlug\EasySlug;
- В теле модели подключаем трейт
use EasySlug;
[en]
- In header model
use EasySlug\EasySlug;
- In the body of the model use trait
use EasySlug;
Использование
[ru]
- Добавляем мутатор в нужную модель (или базовую модель)
- Первый параметр
$value
- наше значение - Второй параметр
slug
- поле, в котором хранится наш слаг - Третий параметр
custom_field
- поле из которого будет формироваться слаг - Обрезает длину слага до 100 символов
ЗЫ: Если Вы хотите формировать слаг из полей title
или name
- третий параметр можно не указывать (если находит title
формирует сперва из него, если нет - ищет name
). Если третий параметр не указан или не найден - формируется слаг 'slug_'. date("Y-m-d-H-i-s")
, проверяется на уникальность и, если есть совпадения, дописывает первое уникальное число через дефис.
[en]
- Add a mutator to the desired model (or base model)
- The first parameter
$value
is our value - The second parameter
slug
is the field in which our slug is stored - The third parameter
custom_field
is the field from which the slug will be formed - Cuts the length of the slag to 100 characters
PS: If you want to form a slug from the title
orname
fields - the third parameter can be null (if it finds title
forms first of it, if not, it searches forname
). If the third parameter is not specified or not found, the slug formed 'slug_'. date("Y-m-d-H-i-s")
, is checked for uniqueness and, if there are matches, appends the first unique number with a hyphen.
Контакты
https://t.me/neodaan по всем вопросам
License
EasySlug is open-sourced software licensed under the MIT license.
All versions of easy-slug with dependencies
ext-iconv Version *