pantagruel964/laravel5-yandex-slug
| Install | |
|---|---|
composer require pantagruel964/laravel5-yandex-slug |
|
| Latest Version: | 1.0.0 |
| PHP: | >=5.4.0 |
| License: | MIT |
| Last Updated: | Sep 16, 2017 |
| Links: | GitHub · Packagist |
Transliterate cyrillic characters in according to Yandex rules for Laravel 5
Laravel 5 has it's own function str_slug to revert cyrillic characters into translit. But it is not quite right for Yandex.
For example, if you make your URL like this: $slug = str_slug('ёлка') function return result elka. It's not good for SEO. Your URL won't be highlighted into the SERP:

The package makes slug characters in according to Yandex rules, in particular such characters as ё, щ, я, ю, ж, ц. As result Yandex will highlight keyword in URL into the SERP

Installation
composer require pantagruel964/laravel5-yandex-slug
After updating composer, add the service provider and facade in config/app.php
'providers' => [
...
Pantagruel964\Laravel5YandexSlug\SlugServiceProvider::class
...
]
'aliases' => [
...
'Slug' => Pantagruel964\Laravel5YandexSlug\Facades\Slug::class
...
]
Using
$slug = Slug::make('ёлка')
License
This package for Laravel is open-sourced software licensed under the MIT license
Related Packages
Port to Laravel4 of jbroadway's PHP port of URLify.js from the Django project. T...
Port to Laravel4 of jbroadway's PHP port of URLify.js from the Django project. T...