Require this package with composer using the following command:
$ composer require capital/oursms
$ php artisan vendor:publish --provider=Capital\OurSms\OurSmsServiceProvider
OUR_SMS_ID=your_id
OUR_SMS_KEY=your_key
you 'll find it in https://oursms.app
use Capital\OurSms\Send;
.
.
.
Send::oneSms('07*********', 'Your Message');
use Capital\OurSms\Send;
.
.
.
Send::otp('07*********', 'OTP expire time in minutes');
use Capital\OurSms\Send;
.
.
.
Send::checkOTP('07*********', 'OTP Code');
use Capital\OurSms\Send;
.
.
.
Send::status('messageID');
You can use phone number format like that:
07*********
7*********
9647*********
OutSms is free software licensed under the MIT license.