Skip to content

Instantly share code, notes, and snippets.

View twmbx's full-sized avatar
🇿🇲

Twaambo Haamucenje twmbx

🇿🇲
View GitHub Profile
@twmbx
twmbx / validators.php
Created August 18, 2014 12:34
Additional validators for use with Laravel 4
<?php
// this file is meant for use with laravel 4
// it can be placed in the root of the app directory
// and included from routes.php
// validate alphabetical chars & spaces only
Validator::extend('alpha_space', function($attr, $value) {
return preg_match('/^([a-zA-Z ])+$/i', $value);
});