alaaelsaid/laravel-malath-sms

This package is to integrate with malath sms

1.2.0 2024-09-26 18:15 UTC

This package is auto-updated.

Last update: 2024-09-26 18:16:11 UTC


README

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 !');