huie/sendgud

Laravel package for sending sms

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/huie/sendgud

dev-master 2019-01-11 09:38 UTC

This package is auto-updated.

Last update: 2025-10-12 06:53:10 UTC


README

A laravel package use to send sms for the users.

installation
composer require huie/sendgud
after installation in your config/app.php add
    /*
	* Package Service Providers...
	*/
	Send\Sms\SmsServiceProvider::class,
and in the alliases add
'Sms' => Send\Sms\Facades\Sms::class,
Generate configuration file run command
php artisan vendor:publish
in your config/sms.php your can set default to your service provider or by adding PROVIDER in your .env
'PROVIDER_URI' => env('PROVIDER', null)

You can use by importing facade

use use Send\Sms\Facades\Sms;

Sms::sendSms('9123jas87123', '923!@#43245@#$', 'samplepass');