rahulreghunath/textlocal is a Laravel package for textlocal sms gateway wrapper for laravel.
It currently has 2 GitHub stars and 22.426 downloads on Packagist (latest version v1.0.2).
Install it with composer require rahulreghunath/textlocal.
Discover more Laravel packages by rahulreghunath
or browse all Laravel packages to compare alternatives.
Last updated
A simple PHP API extension for Textlocal(textlocal.in) sms gateway integration in Laravel
Require this package in your composer.json and update composer. This will download the package.
composer require rahulreghunath/textlocal
After updating composer, add the ServiceProvider to the providers array in config/app.php
Rahulreghunath\Textlocal\ServiceProvider::class,
packege auto discovery available for laravel version 5.5 or later
After adding ServiceProvider, Run the command
php artisan vendor:publish
After that set your textlocal authentication key inside textlocal.php file inside config folder and you are good to go
$sms = new Textlocal();
$sms->send('message', 'mobile number','sender'); //sender is optional
You can check https://api.textlocal.in/docs/phpclass for more available methods and complete Documentation can be found here