PHPackages                             guysolamour/laravel-callmebot - 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. guysolamour/laravel-callmebot

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

guysolamour/laravel-callmebot
=============================

A package to send messages with callmebot api

v2.1(2y ago)164MITPHP

Since Oct 2Pushed 2y ago1 watchersCompare

[ Source](https://github.com/guysolamour/laravel-callmebot)[ Packagist](https://packagist.org/packages/guysolamour/laravel-callmebot)[ RSS](/packages/guysolamour-laravel-callmebot/feed)WikiDiscussions master Synced 3d ago

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

Laravel Callmebot
=================

[](#laravel-callmebot)

[![Packagist](https://camo.githubusercontent.com/c7ea06d246ed3410678d8dd55ebdb4b4902b1b04afc981f2274bd771f458607c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f677579736f6c616d6f75722f6c61726176656c2d63616c6c6d65626f742e737667)](https://packagist.org/packages/guysolamour/laravel-callmebot)[![Packagist](https://camo.githubusercontent.com/d26fe09d7408ce68b11abf5a72372b125934c1b74008fdd3cac2fab3bed85afe/68747470733a2f2f706f7365722e707567782e6f72672f677579736f6c616d6f75722f6c61726176656c2d63616c6c6d65626f742f642f746f74616c2e737667)](https://packagist.org/packages/guysolamour/laravel-callmebot)[![Packagist](https://camo.githubusercontent.com/19dda9d271a4dee268f55f1482b7bf4529d11d9b30ed4555a2a7bb0c31b97100/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f677579736f6c616d6f75722f6c61726176656c2d63616c6c6d65626f742e737667)](https://packagist.org/packages/guysolamour/laravel-callmebot)

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

[](#installation)

Install via composer

```
composer require guysolamour/laravel-callmebot
```

Usage
-----

[](#usage)

### Whatsapp

[](#whatsapp)

#### Send message

[](#send-message)

```
Guysolamour\Callmebot\Facades\Whatsapp::apikey($apikey)->phone($phone)->message($message)->send();

// or

Guysolamour\Callmebot\Facades\Whatsapp::send([
  'apikey'   => $apikey,
  'phone'    => $phone,
  'text'     => $message,
]);
```

#### Send notification

[](#send-notification)

```
// in Notification file

/**
 * Get the notification's delivery channels.
 *
 * @param  mixed  $notifiable
 * @return array
 */
public function via($notifiable)
{
    return ['cbwhatsapp']; // or ['Guysolamour\Callmebot\Channels\WhatsappChannel::class']
}

/**
 * Get the array representation of the notification.
 *
 * @param  mixed  $notifiable
 * @return array
 */
public function toCbWhatsapp($notifiable)
{
    return "Message ...";
}

// in Notifiable model
public function enableCallmebotNotification() :bool
{
    return true;
}

public function routeNotificationForCbWHatsapp()
{
    return 0102030405;
}

/**
 * Get callmebot api keys
 *
 * @param string|null $client
 * @return string|array
 */
public function callmebotApiKeys(?string $client = null)
{
    $client_keys =  [
        'whatsapp' => 012345,
    ];

    if (is_null($client)){
        return $client_keys;
    }

    return Arr::get($client_keys, $client);
}
```

Security
--------

[](#security)

If you discover any security related issues, please email instead of using the issue tracker.

Credits
-------

[](#credits)

- [Guy-roland ASSALE](https://github.com/guysolamour/laravel-callmebot)
- [All contributors](https://github.com/guysolamour/laravel-callmebot/graphs/contributors)

This package is bootstrapped with the help of [melihovv/laravel-package-generator](https://github.com/melihovv/laravel-package-generator).

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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 ~155 days

Total

5

Last Release

1065d ago

Major Versions

v1.0.2 → v2.02022-06-22

PHP version history (2 changes)v1.0.0PHP &gt;=7.4

v2.0PHP ^8.0.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/45a6375d79a9d7c7b3947473bef714f03a02bb0341d06e6c17ca114b82b0b01d?d=identicon)[guysolamour](/maintainers/guysolamour)

---

Top Contributors

[![guysolamour](https://avatars.githubusercontent.com/u/22590722?v=4)](https://github.com/guysolamour "guysolamour (6 commits)")

---

Tags

laravelcallmebot

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/guysolamour-laravel-callmebot/health.svg)

```
[![Health](https://phpackages.com/badges/guysolamour-laravel-callmebot/health.svg)](https://phpackages.com/packages/guysolamour-laravel-callmebot)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[fedeisas/laravel-mail-css-inliner

Inline the CSS of your HTML emails using Laravel

5974.6M3](/packages/fedeisas-laravel-mail-css-inliner)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)

PHPackages © 2026

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