omalizadeh/laravel-sms

A driver-based laravel package for sending messages via online sms providers.
2,580 7
Install
composer require omalizadeh/laravel-sms
Latest Version:v3.1.0
PHP:^8.4
License:MIT
Last Updated:May 8, 2026
Links: GitHub  ·  Packagist
Maintainer: omalizadeh

Laravel SMS Package

This is a laravel sms package with multi driver support. Supports laravel v11.0+ and requires php v8.3+

Star! :star: if you used and liked this package.

Supported SMS Providers

Installation & Configuration

Install using composer

  composer require omalizadeh/laravel-sms

Publish config file

  php artisan vendor:publish --provider=Omalizadeh\SMS\Providers\SMSServiceProvider

Usage

Single message:

    use Omalizadeh\SMS\Facades\SMS;
    use Omalizadeh\SMS\Requests\SendSMSRequest;

    SMS::send(new SendSMSRequest('+989123456789', 'Hello!'));

Template message:

    use Omalizadeh\SMS\Facades\SMS;
    use Omalizadeh\SMS\Requests\SendTemplateSMSRequest;

    SMS::sendTemplate(new SendTemplateSMSRequest('+989123456789', 'template_code', [
    'param1' => 'coupon',
    ]));

Related Packages

ejimba/laravel-at-sms

Integrate SMS messaging in your Laravel Application using Africas Talking Gatewa...

32 1
sun/laravel-flash

Sun Flash helps you to add flash messages to your Laravel application.

1,831 2
rinvex/laravel-authy

Rinvex Authy is a simple wrapper for Authy TOTP, the best rated Two-Factor Authe...

78,132 32
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
formaldehid/laravel-smsbump

An easy way to use the SmsBump API in your Laravel applications.

44 0