pafelin/laravel4-german-slug

Laravel 4 slug maker for german/austrian strings
6 1
Install
composer require pafelin/laravel4-german-slug
PHP:>=5.3.0
License:MIT
Last Updated:Apr 1, 2014
Links: GitHub  ·  Packagist
Maintainer: pafelin

Laravel 4.1 German Slug

Build Status

Installation

You should install this package through Composer.

Edit your project's composer.json file to require pafelin/laravel4-german-slug.

"require": {
    "laravel/framework": "4.1.*",
    "pafelin/laravel4-german-slug": "dev-master"
},
"minimum-stability" : "dev"

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.

'Pafelin\Laravel4GermanSlug\SlugServiceProvider',

And add a new item to the aliases array.

'Slug' => 'Pafelin\Laravel4GermanSlug\Facades\Slug',

Usage

Call of the method: Slug::make($text)

Call of the method with specific separator: Slug::make($text, '_').

License

The MIT License (MIT)

Copyright (c) 2013 Pavel Genov

Related Packages

somepony/l4-cyrillic-slug

Кириллический Slug

40 1
metrakit/visualcaptcha-laravel

Laravel library for visualCaptcha. VisualCaptcha is created by EmotionLoop

1,898 8
pantagruel964/laravel5-yandex-slug

Generate slug into translit in according to Yandex rules for Laravel 5

702 4
spatie/laravel-sluggable

Generate slugs when saving Eloquent models

13,685,183 1,556
cviebrock/eloquent-sluggable

Easy creation of slugs for your Eloquent models in Laravel

14,698,691 3,997