add register page

This commit is contained in:
2024-07-28 15:26:09 +05:00
parent 74011d9eab
commit 9d65fa72b6
5 changed files with 16 additions and 6 deletions

View File

@@ -49,6 +49,10 @@ function unMaskPhone(string|int $phone): string
*/
function sendSMS(string|int $phone, string|int $message)
{
if (! app()->isProduction()) {
return;
}
$client = new Client();
$headers = [
'Content-Type' => 'application/json;charset=utf-8;',