PHPackages                             rene-roscher/clicksend-laravel - 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. [API Development](/categories/api)
4. /
5. rene-roscher/clicksend-laravel

ActiveLibrary[API Development](/categories/api)

rene-roscher/clicksend-laravel
==============================

A Laravel package to create SMS messages &amp; Voice calls using ClickSend

1.0.2(1y ago)11.8k↓71.4%MITPHPPHP &gt;=8.2

Since Feb 16Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Rene-Roscher/clicksend-laravel)[ Packagist](https://packagist.org/packages/rene-roscher/clicksend-laravel)[ Docs](https://github.com/rene-roscher/clicksend-laravel)[ RSS](/packages/rene-roscher-clicksend-laravel/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (3)Dependencies (5)Versions (4)Used By (0)

Laravel ClickSend Notification Channel
======================================

[](#laravel-clicksend-notification-channel)

This Laravel package integrates ClickSend for sending SMS and voice messages within Laravel applications, leveraging ClickSend's capabilities for notifications.

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

[](#installation)

Install via composer:

```
composer require rene-roscher/clicksend-laravel

```

Configuration
-------------

[](#configuration)

Add ClickSend credentials in `.env` and in `config/services.php`:

.env

```
CLICKSEND_USERNAME=username
CLICKSEND_PASSWORD=password

```

config/services.php

```
'clicksend' => [
	'username' => env('CLICKSEND_USERNAME'),
	'password' => env('CLICKSEND_PASSWORD'),
],

```

Usage
-----

[](#usage)

### Notification Example for SMS and Voice

[](#notification-example-for-sms-and-voice)

Simply create a new notification and use the preferred class to send a notification.

Note: Make sure to replace all spaces in the phone number with an empty string.

```
class TestNotificationClickSend extends Notification
{
    /**
     * Get the notification's delivery channels.
     *
     * @return array
     */
    public function via(object $notifiable): array
    {
        return ['clicksend-voice', 'clicksend-sms']; // All channels are automatically registered by default
    }

    /**
     * Get the mail representation of the notification.
     */
    public function toClicksendVoice(object $notifiable) // Voice
    {
        return ClickSendVoiceMessage::create(
            message: 'Your Verification Code is: 1234 - I repeat: 1234 - Goodbye!',
            to: $notifiable->phone_number
        );
        // Or
        return 'Your Verification Code is: 1234 - I repeat: 1234 - Goodbye!';
    }

    public function toClicksendSms(object $notifiable) // SMS
    {
        // Default
        return ClickSendSmsMessage::create(
            message: 'Your Verification was approved. Thank you! 🎉',
            to: $notifiable->phone_number
        );

        // Or a single message
        return 'Your Verification was approved. Thank you! 🎉';

        // Or multiple messages at once
        return ClickSendSmsMessage::create(
            message: 'Your Verification was approved. Thank you! 🎉',
            to: $notifiable->phone_number
        )->addMessage(
            message: 'Welcome to our platform! 🎉',
            to: $notifiable->phone_number
        );
    }

}
```

License
-------

[](#license)

Licensed under the MIT license.

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance47

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~236 days

Total

3

Last Release

398d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1fb36e30fba441ae796193c1f181cfba0489c29b2e6721227bbfe4dc8fe29bac?d=identicon)[Rene Roscher](/maintainers/Rene%20Roscher)

---

Top Contributors

[![Rene-Roscher](https://avatars.githubusercontent.com/u/43115138?v=4)](https://github.com/Rene-Roscher "Rene-Roscher (5 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rene-roscher-clicksend-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/rene-roscher-clicksend-laravel/health.svg)](https://phpackages.com/packages/rene-roscher-clicksend-laravel)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.6k30.0M148](/packages/laravel-cashier)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M167](/packages/spatie-laravel-health)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

811334.1k3](/packages/defstudio-telegraph)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1235.9k20](/packages/fleetbase-core-api)

PHPackages © 2026

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