smart-crowd/simple-sms-drivers
simple-sms-drivers
Addition drivers for simple SMS laravel package
Installition
composer require "smart-crowd/simple-sms-drivers: dev-master"
Instead of original simple sms service provider, set our:
'providers' => [
...
SmartCrowd\Sms\SmsServiceProvider::class
]
Set original simple sms alias:
'aliases' => [
...
'SMS' => SimpleSoftwareIO\SMS\Facades\SMS::class
Publish original simple sms config:
php artisan vendor:publish
Now you can set up addtition sms drivers in config/sms.php file:
'smscenter' => [
'login' => env('SMS_CENTER_LOGIN'),
'password' => env('SMS_CENTER_PASSWORD')
],
'smsru' => [
'api_id' => env('SMS_RU_API_ID')
],
'smsclub' => [
'login' => env('SMS_CLUB_LOGIN'),
'password' => env('SMS_CLUB_PASSWORD')
],
Usage
Related Packages
rinvex/laravel-authy
Rinvex Authy is a simple wrapper for Authy TOTP, the best rated Two-Factor Authe...
77,746
32
laravel-notification-channels/authy
Authy notification channel for Laravel, with the ability to send in-app, sms, an...
46,700
57