henset11 / onesender-laravel
OneSender integration for Laravel
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/henset11/onesender-laravel
Requires
- php: ^7.4|^8.0
- guzzlehttp/guzzle: ^7.0
- illuminate/support: ^8.0|^9.0|^10.0
This package is auto-updated.
Last update: 2025-10-23 16:53:56 UTC
README
How to install: 
composer require henset11/onesender-laravel 
Publish config: 
php artisan vendor:publish --tag=onesender-config 
How to use: 
Send text 
OneSender::text($number, $message, $recipientType) 
OneSender::text('08123456789', 'Hello', 'individual') 
Send Image 
OneSender::image($phone, $imageUrl, $caption, $recipientType) 
Send Document 
OneSender::document($phone, $documentUrl, $filename, $caption, $recipientType) 
you can change recipientType to 'individual' or 'group'