PHPackages                             tomal2000/laravel-sms-pro - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. tomal2000/laravel-sms-pro

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

tomal2000/laravel-sms-pro
=========================

A Package For Sending Sms From Various Bulk Sms Service Provider

01PHP

Since Nov 14Pushed 3y ago1 watchersCompare

[ Source](https://github.com/tomal2000/laravel-sms-pro)[ Packagist](https://packagist.org/packages/tomal2000/laravel-sms-pro)[ RSS](/packages/tomal2000-laravel-sms-pro/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel SMS Pro
===============

[](#laravel-sms-pro)

Laravel SMS Pro allows you to send SMS from your Laravel application using multiple bulk sms service provider's api. Note: Now Only SMSQ Provider Availble. (Othrs Are Comming Soon)

Requirements
------------

[](#requirements)

- PHP &gt;=8.1

Installation
------------

[](#installation)

### Step 1

[](#step-1)

You can install the package via composer:

```
composer require tomal2000/laravel-sms-pro
```

#### Laravel 5.5 and above

[](#laravel-55-and-above)

The package will automatically register itself, so you can start using it immediately.

#### Laravel 5.4 and older

[](#laravel-54-and-older)

In Laravel version 5.4 and older, you have to add the service provider in `config/app.php` file manually:

```
'providers' => [
    // ...
    Tomal2000\LaravelSmsPro\LaravelSmsProServiceProvider::class,
];
```

#### Lumen

[](#lumen)

After installing the package, you will have to register it in `bootstrap/app.php` file manually:

```
// Register Service Providers
    // ...
    $app->register(Tomal2000\LaravelSmsPro\LaravelSmsProServiceProvider::class);
];
```

#### Env Keys

[](#env-keys)

```
SMS_SENDER=
SMSQ_APIKEY=
SMSQ_CLINTID=
```

### Step 2 - Publishing files

[](#step-2---publishing-files)

Run: `php artisan vendor:publish --tag=laravel-sms-pro`This will move the migration file, seeder file and config file to your app. You can set your sms details in the config file or via env

### Step 3 - Adding SMS credentials

[](#step-3---adding-sms-credentials)

- Add the env keys to your `.env` file
- Or edit the config/laravel-sms-pro.php file

Usage
-----

[](#usage)

```
//using SMSQ Provider
use use Tomal2000\LaravelSmsPro\Concrete\SMSQ;

sms = new SMSQ();

$sms->text('This Laravel Test Message')->to('8801307366733')->from('MyLaravel')->send(); //return true/false for success/failed

//to('880130736673','8801736744457') use like this if you want to sent message to multiple numbers. Country Code is Mandatory
//from(string 'MyLaravel') Thsi Optional If Not set it then got Sender Id Form SMS_SENDER env key from .env or laravel-sms-pro.php file.

$sms->getResponse(); //also you can get response payload using this

$sms->getException(); //also you can get exception if error occured using this,exceptions will be logged in your laravel log file
```

### Available SMS Providers

[](#available-sms-providers)

ProviderURLTestedSMSQYesContributing
------------

[](#contributing)

- Fork this project
- Clone to your repo
- Clone your forked repo
- Make your changes and test
- Push and create Pull request
- Push and create Pull Request
- Make sure your PR passes all checks

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity24

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2878d517ec2f9dcd6ab3ec5cfe78693b02862f5a4b12f9fdb6219731866e80d4?d=identicon)[tomalsen2000](/maintainers/tomalsen2000)

---

Top Contributors

[![tomal2000](https://avatars.githubusercontent.com/u/68027169?v=4)](https://github.com/tomal2000 "tomal2000 (8 commits)")

### Embed Badge

![Health badge](/badges/tomal2000-laravel-sms-pro/health.svg)

```
[![Health](https://phpackages.com/badges/tomal2000-laravel-sms-pro/health.svg)](https://phpackages.com/packages/tomal2000-laravel-sms-pro)
```

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
