bigraja / bulksmsbd
Laravel SMS notification channel for bulksmsbd.net
v1.0.2
2025-05-01 03:53 UTC
Requires
- php: ^8.1
- illuminate/support: ^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2026-03-29 01:16:14 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"; }