raccoonsoftware / slug
Laravel 5.1 Slug Package
V1.0.0
2015-11-15 14:33 UTC
This package is not auto-updated.
Last update: 2024-10-26 18:17:36 UTC
README
Supported Alphabets
- Russian
- Kazakh
- Ukrainian
- Turkish
Installation
You should install this package through Composer.
Edit your project's composer.json
file to require raccoonsoftware/slug
.
"require": {
"raccoonsoftware/slug": "*"
},
Next, update Composer from the Terminal:
composer update
Once this operation completes, the final step is to add the service provider.
Open app/config/app.php
, and add a new item to the providers array.
'RaccoonSoftware\Slug\SlugServiceProvider::class',
And add a new item to the aliases array.
'Slug' => 'RaccoonSoftware\Slug\Facade\Slug::class',
Usage
Call of the method: Slug::convert($text)
Call of the method with specific separator: Slug::convert($text, '_')
.