laravel-sms-gateway-ippanel maintained by misaf
Description
IPPanel SMS gateway driver for Laravel.
Author
Last update
2026/07/04 11:55
(dev-master)
License
Downloads
1
Tags
sms - laravel - sms-gateway - laravel-package - sms-api - ippanel - sms-provider - sms-driver - ippanel-sms
Laravel SMS Gateway IPPanel Driver
IPPanel SMS gateway driver for misaf/laravel-sms-gateway.
Installation
composer require misaf/laravel-sms-gateway-ippanel
Laravel package discovery registers the driver service provider automatically.
Configuration
SMS_GATEWAY_DRIVER=ippanel
SMS_GATEWAY_IPPANEL_USERNAME=your-username
SMS_GATEWAY_IPPANEL_PASSWORD=your-password
// config/services.php
'ippanel' => [
'username' => env('SMS_GATEWAY_IPPANEL_USERNAME'),
'password' => env('SMS_GATEWAY_IPPANEL_PASSWORD'),
],
Usage
use Misaf\LaravelSmsGateway\Facade\SmsGateway;
$response = SmsGateway::driver('ippanel')->send([
'to' => '09123456789',
'message' => 'Hello',
]);
The payload is passed directly to IPPanel, so use the fields expected by the IPPanel API.
Use request() when you need direct access to Laravel's HTTP client:
$request = SmsGateway::driver('ippanel')->request();
Testing
composer test
composer analyse
License
MIT