PHPackages                             marjose123/laravel-zoho-cliq-alert - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. marjose123/laravel-zoho-cliq-alert

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

marjose123/laravel-zoho-cliq-alert
==================================

Quickly send a message to Zoho Cliq Channels.

1.0.0(1y ago)01[4 PRs](https://github.com/MarJose123/laravel-zoho-cliq-alert/pulls)MITPHPPHP ^8.3|^8.4CI passing

Since Mar 7Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/MarJose123/laravel-zoho-cliq-alert)[ Packagist](https://packagist.org/packages/marjose123/laravel-zoho-cliq-alert)[ Docs](https://github.com/marjose123/laravel-zoho-cliq-alert)[ GitHub Sponsors](https://github.com/MarJose123)[ RSS](/packages/marjose123-laravel-zoho-cliq-alert/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (11)Versions (6)Used By (0)

Quickly send a message to Zoho Cliq Channels.
=============================================

[](#quickly-send-a-message-to-zoho-cliq-channels)

[![Latest Version on Packagist](https://camo.githubusercontent.com/61030b30b58e89cbd678618ecca375a2c9ba935cbea563671bdd357adabc4f2a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d61726a6f73653132332f6c61726176656c2d7a6f686f2d636c69712d616c6572742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marjose123/laravel-zoho-cliq-alert)[![GitHub Tests Action Status](https://camo.githubusercontent.com/102b4ac4be3935c37ebb9419fc679997c8e43a38d1b3163361c0dbe9424214a4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d61726a6f73653132332f6c61726176656c2d7a6f686f2d636c69712d616c6572742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/marjose123/laravel-zoho-cliq-alert/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/bb7bd773afa0658d674972908f701231e215203a787a811f777cc34e2f5bc956/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d61726a6f73653132332f6c61726176656c2d7a6f686f2d636c69712d616c6572742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/marjose123/laravel-zoho-cliq-alert/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/d43ae1afce1b20757e1888b31fc7bdc143d4a3dea82234890ee16e9597d626fc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d61726a6f73653132332f6c61726176656c2d7a6f686f2d636c69712d616c6572742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/marjose123/laravel-zoho-cliq-alert)

This package can quickly send alerts to Zoho Cliq. You can use this to notify yourself of any noteworthy events happening in your app.

```
use MarJose123\ZohoCliqAlert\Facades\ZohoCliqAlert;

ZohoCliqAlert::channel('marketing')->message("You have a new subscriber to the {$newsletter->name} newsletter!");
```

Under the hood, a job is used to communicate with Zoho Cliq. This prevents your app from failing in case Zoho Cliq is down.

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

[](#installation)

You can install the package via composer:

```
composer require marjose123/laravel-zoho-cliq-alert
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-zoho-cliq-alert-config"
```

This is the contents of the published config file:

```
return [
  /*
    |--------------------------------------------------------------------------
    | OAuth Credentials
    |--------------------------------------------------------------------------
    |
    | These are OAuth credentials required for authentication with Zoho Cliq API.
    | You can obtain these credentials from your Zoho Cliq Developer Console:
    | https://api-console.zoho.com/
    |
    */
    'client_id' => env('ZOHO_CLIENT_ID', ''),
    'client_secret' => env('ZOHO_CLIENT_SECRET', ''),
];
```

Usage
-----

[](#usage)

Basic sending of message without using message card feature of Zoho Cliq.

```
use MarJose123\ZohoCliqAlert\Facades\ZohoCliqAlert;
use \MarJose123\ZohoCliqAlert\ZohoDataCenter;

ZohoCliqAlert::channel('marketing')
      ->asBot('MarketingWebsite')
      ->dataCenter(ZohoDataCenter::US)
      ->queue('default')
      ->message("You have a new subscriber to the {$newsletter->name} newsletter!")
      ->send();
```

You want to use modern card message. You can check [Zoho Cliq Message Card](https://www.zoho.com/cliq/help/restapi/v2/#Message_Cards) for more details.

```
use MarJose123\ZohoCliqAlert\Facades\ZohoCliqAlert;
use \MarJose123\ZohoCliqAlert\ZohoDataCenter;

ZohoCliqAlert::channel('marketing')
      ->asBot('MarketingWebsite')
      ->dataCenter(ZohoDataCenter::US)
      ->queue('default')
      ->message("You have a new subscriber to the {$newsletter->name} newsletter!",[
       'card' => [
            "title" => "ANNOUNCEMENT",
            "theme" => "modern-inline",
            "thumbnail" => "https://www.zoho.com/cliq/help/restapi/images/announce_icon.png"
        ],
        'buttons' => [
            [
              "label" => "View",
              "type" => "+",
              "action" => [
                "type" => "invoke.function",
                "data" => [
                  "name" => "internlist"
                ]
              ]
           ]
       ]
      ])->send();
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [MarJose123](https://github.com/MarJose123)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance70

Regular maintenance activity

Popularity1

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 71.4% 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

Unknown

Total

1

Last Release

432d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2fe4f462400792289dae3a62fc6af21c37ff3c59f80d108ffa436b7eaf1b7a90?d=identicon)[marjose](/maintainers/marjose)

---

Top Contributors

[![MarJose123](https://avatars.githubusercontent.com/u/18107626?v=4)](https://github.com/MarJose123 "MarJose123 (15 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")

---

Tags

laravelMarJose123laravel-zoho-cliq-alert

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/marjose123-laravel-zoho-cliq-alert/health.svg)

```
[![Health](https://phpackages.com/badges/marjose123-laravel-zoho-cliq-alert/health.svg)](https://phpackages.com/packages/marjose123-laravel-zoho-cliq-alert)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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