onlyAlpha
This method keeps only alphabetic letters, removing all numbers, spaces, and special characters.
Usage
$string = 'Hello 123 world';
$string = SM::onlyAlpha($string);
// or
$string = SM::make($string)
->onlyAlpha();
echo $string; // Helloworld