cheanizer / laravel-rapiwha
Rapiwha class wrapper for laravel
Installs: 238
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/cheanizer/laravel-rapiwha
Requires
- guzzlehttp/guzzle: ~6.3
- illuminate/support: >=5.8
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2025-10-15 16:27:31 UTC
README
simple library to interact with rapiwha (rapiwha.com) api whastapp endpoint.
how to install
composer require cheanizer/laravel-rapiwha
note : for Laravel 5.x please use release 1.0
add in the provider section in your config/app.php
Cheanizer\LaraRapiWha\LaraRapiWhaServiceProvider::class
and optional add facades in facades section if you want user this library everytime.
'APIWHA' => Cheanizer\LaraRapiWha\Facade::class
dont forget to copy configuration filed using
php artisan vendor:publish
add parameters rapiwha account to your .env
RAPIWHA_BASE_URL=http://panel.rapiwha.com/
RAPIWHA_APIKEY={your_api_key_here}
how to use
load the library and use this command to send message via whastapp.
$dd = APIWHA::send('628123456789','hello');