Looking to hire Laravel developers? Try LaraJobs

laravel-bulksms maintained by nikba

Description
A Laravel package to send SMS using BulkSMS API
Last update
2024/07/30 21:06 (dev-main)
License
Links
Downloads
14

Comments
comments powered by Disqus

Laravel BulkSMS Package

This package allows you to send SMS messages using the BulkSMS API in your Laravel application.

Installation

composer require nikba/laravel-bulksms

Configuration

Publish the configuration file:

php artisan vendor:publish --provider="Nikba\BulkSms\BulkSmsServiceProvider"

Add your BulkSMS API key to your .env file:

BULKSMS_API_KEY=your_api_key_here

Usage

Use the BulkSms facade to send messages:

use Nikba\BulkSms\Facades\BulkSms;

BulkSms::sendMessage('1234567890', 'Hello World');