mr687/wamazing is a Laravel package for a wrapper wamazing api for laravel.
It currently has 0 GitHub stars and 3 downloads on Packagist.
Install it with composer require mr687/wamazing.
Discover more Laravel packages by mr687
or browse all Laravel packages to compare alternatives.
Last updated
Wamazing for Laravel
You can install the package via composer:
composer require mr687/wamazing
The service provider should automatically register for Laravel > 5.4.
For Laravel < 5.5, open config/app.php and, within the providers array, append:
Mr687\Wamazing\Providers\WamazingServiceProvider::class
Publish the configuration file
php artisan vendor:publish --provider="Mr687\Wamazing\Providers\ZoomServiceProvider"
This will create a wamazing/config.php within your config directory, where you add value for secret token.
....
WAMAZING_TOKEN=
WAMAZING_DEVICE=
Send Text.
use Mr687\Wamazing\Facades\Wamazing;
Wamazing::chat()
->to('6282325xxx')
->message('<b>Hai</b>')
->sendText();
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.