laravel-malath-sms maintained by alaaelsaid
This package is to integrate with Malath SMS
Installation
You can install the package via Composer.
composer require alaaelsaid/laravel-malath-sms
Publishing
After install publish file config
php artisan vendor:publish --tag="malath"
Usage
use Alaaelsaid\LaravelMalathSms\Facade\Malath;
// singel number
Malath::send('9665xxxxxxxx', 'hello, world !');
// multi number
Malath::send(['9665xxxxxxxx', '9665xxxxxxxx', '...'], 'hello, world !');