bobach22/rapidprosms

Package to use sms services

dev-main 2023-01-05 13:15 UTC

This package is not auto-updated.

Last update: 2024-09-25 23:24:11 UTC


README

Installation

You can install the package via composer:

composer require bobach22/smsclient

Publishing required files of package:

php artisan vendor:publish --provider="Bobach22\SmsClient\SmsServiceProvider"

In config folder set params for sms.php

Usage

use Bobach22\SmsClient\Facades\Sms;

$sms=Sms::send('any number','your message');
// with array of numbers
// Sms::send(['number1','number2'],'your message')
$res=$sms->response()