Skip to content

Instantly share code, notes, and snippets.

View PortionLK's full-sized avatar

Janaka Rajapaksha PortionLK

View GitHub Profile
@elena-kolevska
elena-kolevska / validators.php
Last active June 24, 2021 14:44
Custom alphabetic validator that allows spaces
<?php
/* app/validators.php */
Validator::extend('alpha_spaces', function($attribute, $value)
{
return preg_match('/^[\pL\s]+$/u', $value);
});
/*