Skip to content

Instantly share code, notes, and snippets.

View waleedrehmankhan's full-sized avatar
🏠
Working from home

Waleed Rehman waleedrehmankhan

🏠
Working from home
  • Sydney, Australia
View GitHub Profile
@waleedrehmankhan
waleedrehmankhan / Validator.php
Last active January 25, 2023 23:27
Custom Laravel Alphanumeric Validator that allow spaces
Paste this Code in Validator.php
public function validateAlphaSpaces($attribute, $value, $params)
{
return preg_match('/^[\pL\s]+$/u', $value);
}
Create Custom Message some where at bottom in Validation.php
/*