bigraja / bulksmsbd
Laravel SMS notification channel for bulksmsbd.net
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bigraja/bulksmsbd
Requires
- php: ^8.1
- illuminate/support: ^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2025-12-31 00:28:44 UTC
README
Send SMS via bulksmsbd.net in Laravel using Notification system or Facade.
Installation
composer require bigraja/bulksmsbd
Publish Config File
php artisan vendor:publish --provider="Bigraja\BulkSmsBD\BulkSmsBDServiceProvider" --tag="bulksmsbd-config"
Configuration
Add to .env:
BULKSMSBD_API_KEY=your_api_key
BULKSMSBD_SENDER_ID=your_sender_id
Usage
use BulkSmsBD; BulkSmsBD::send('88017XXXXXXXX', 'Your message');
Notification Channel
public function via($notifiable) { return [\Bigraja\BulkSmsBD\BulkSmsBDChannel::class]; } public function toBulkSmsBD($notifiable) { return "Your SMS message"; }