alaaelsaid/laravel-malath-sms

This package is to integrate with malath sms

Installs: 25

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/alaaelsaid/laravel-malath-sms

1.2.0 2024-09-26 18:15 UTC

This package is auto-updated.

Last update: 2025-09-26 20:24:24 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 !');