wip
This commit is contained in:
@@ -5,6 +5,15 @@ use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Psr7\Request;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
/**
|
||||
* Un mask phone from "+(993)-xx-xx-xx-xx"
|
||||
* @param string|int $phone
|
||||
*/
|
||||
function unMaskPhone(string|int $phone): string
|
||||
{
|
||||
return substr(str_replace(['+', '(', ')', '-', '_'], '', $phone), 3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a sms
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user