azima / sms
Laravel SMS Gateway Integration Package
Installs: 233
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/azima/sms
Requires
- php: ^7.4|^8.0
This package is auto-updated.
Last update: 2025-10-29 02:44:09 UTC
README
This Package For Handling Multiable Message Using End Point
https://gateway.sa/
📦 Install
Via Composer
$ composer require azima/sms
âš¡ Configure
Publish the config file
$ php artisan sms:publish
🔥 Usage
In your env file just use it like this. GATEWAY_SA_URL= GATEWAY_SA_USER= GATEWAY_SA_PASSWORD= GATEWAY_SA_SENDER_ID= # On the top of the file. use Azima\Sms\Facades\Sms; ... # In your Controller. Sms::send("this message", function($sms) { $sms->to(['Number 1', 'Number 2']); # The numbers to send to. }); # OR... Sms::send("this message")->to(['Number 1', 'Number 2'])->dispatch();