2017 © Pedro PelĆ”ez
 

library larasms

laravel send sms library

image

kubill/larasms

laravel send sms library

  • Friday, May 11, 2018
  • by kubill
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

LaraSms

this is a sms library for laravel, (*1)

Version Compatibility

Sms Provider Version Support
more provider coming soon

Installation

Install using composer:, (*2)

composer require kubill/larasms

Laravel version < 5.5 (optional)

Add the service provider in config/app.php:, (*3)

\Kubill\LaraSms\SmsServiceProvider::class,

And add the Sms alias to config/app.php:, (*4)

'Sms' => \Kubill\LaraSms\Facades\Sms::class,

Then run these commands to publish config:, (*5)

php artisan vendor:publish --provider="Kubill\LaraSms\SmsServiceProvider"

Basic Usage

use the Sms Facade:, (*6)

simple, (*7)

use \Kubill\LaraSms\Facades\Sms;

Sms::send('hello world', '188xxxxxxxx');

batch, (*8)

use \Kubill\LaraSms\Facades\Sms;

Sms::batchSend('hello world', array('188xxxxxxxx', '189xxxxxxxx'));

License

LaraSms is licensed under The MIT License (MIT)., (*9)

The Versions

11/05 2018

dev-master

9999999-dev https://github.com/kubill/larasms

laravel send sms library

  Sources   Download

MIT

by Avatar kubill

library sms