https://packagist.org/packages/techhimalayasoft/himalayasms
Himalaya SMS Laravel Package can be used to send SMS via Himalaya SMS.
php artisan vendor:publish --provider="techhimalayasoft\HimalayaSMS\HimalayaSMSServiceProvider"
// Using Default
use HimalayaSMS;
$senderid = ''
$campaign = ''
$routeid = ''
$key = ''
$to = '98########'; // Setting Phone Number
$text = 'Test message.'; // Setting Message
// Send the message
$sms_message = HimalayaSMS::send($to, $text, $senderid, $campaign, $routeid, $key);
// This will return a pseudo JSON response, you will need to json_decode it.
The MIT License (MIT). Please see License File for more information.