Laravel package to sanitize a string for use in URL's
Add webpatser/laravel-sanitize
to composer.json
.
"webpatser/laravel-sanitize": "dev-master"
Run composer update
to get the latest version of Sanitize.
Edit app/config/app.php
and add the alias
'aliases' => array(
'Sanitize' => 'Webpatser\Sanitize\Sanitize',
)
Sanitize::string('Sanitize me please!'); // sanitize-me-please
It uses the PHP Normalizer class and does some extra magic, and wraps it in the Laravel 4 grand scheme of things.