PHPackages                             molnix/laravel-nextcloud-talk-channel - 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. molnix/laravel-nextcloud-talk-channel

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

molnix/laravel-nextcloud-talk-channel
=====================================

A Laravel notification channel for Nextcloud Talk

v1.0.2(1mo ago)0162MITPHPPHP &gt;=8.1CI passing

Since Oct 27Pushed 1mo agoCompare

[ Source](https://github.com/Molnix-open-source/laravel-nextcloud-talk-channel)[ Packagist](https://packagist.org/packages/molnix/laravel-nextcloud-talk-channel)[ Docs](https://github.com/Molnix-open-source/laravel-nextcloud-talk-channel)[ RSS](/packages/molnix-laravel-nextcloud-talk-channel/feed)WikiDiscussions main Synced today

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

Nextcloud talk notification channel
===================================

[](#nextcloud-talk-notification-channel)

[![Tests](https://github.com/Molnix-open-source/laravel-nextcloud-talk-channel/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Molnix-open-source/laravel-nextcloud-talk-channel/actions/workflows/tests.yml/badge.svg?branch=main)

This package makes it easy to send notifications using [NextcloudTalk](https://nextcloud.com/) with Laravel 10.x, 11.x and 12.x.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the NextcloudTalk service](#setting-up-the-NextcloudTalk-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install this package via composer:

```
composer require molnix/laravel-nextcloud-talk-channel
```

### Setting up the NextcloudTalk service

[](#setting-up-the-nextcloudtalk-service)

Add your NextcloudTalk config to config/services.php:

```
// config/services.php
...
    'nextcloudtalk' => [
        'url' => env('NEXTCLOUD_URL'),
        'username' => env('NEXTCLOUD_USERNAME'),
        'password' => env('NEXTCLOUD_PASSWORD'),
        'default_channel' => env('NEXTCLOUD_DEFAULT_CHANNEL'),
        'one_to_one_channel_name' => env('NEXTCLOUD_ONE_TO_ONE_CHANNEL_NAME'),
    ],
...
```

Usage
-----

[](#usage)

You can use the channel in your via() method inside the notification:

```
use Illuminate\Notifications\Notification;
use Molnix\Channels\NextcloudTalkChannel;
use Molnix\Channels\NextcloudTalkMessage;

class NextcloudNotification extends Notification
{

    public function via(object $notifiable): array
    {
        return [NextcloudTalkChannel::class];
    }

    public function toNextcloudTalk()
    {
        return NextcloudTalkMessage::create('Hello');
    }

}
```

If you want the bot to make a channel with the user and send message (one to one), add `routeNotificationForNextcloudTalk` to your notifiable model:

```
public function routeNotificationForNextcloudTalk($notification): string
    {
        return $this->username;
    }
```

Channel selection order:

1. Channel specified using `NextcloudTalkMessage::to()`.
2. `routeNotificationForNextcloudTalk()`
3. `default_channel` specified in the config

### Available Message methods

[](#available-message-methods)

`to()`: To specify a nextcloud channel token, example groups etc.

`content()`: Sets a content of the notification message.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

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

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

[](#contributing)

You are welcome to contribute

Credits
-------

[](#credits)

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

License
-------

[](#license)

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

Made with ❤ in Finland with [Molnix](https://molnix.com)

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance88

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

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

Total

3

Last Release

59d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/27094e8876f8125fb8f6c5e2f6856d28019864eeb4950a56960df79aa247ac80?d=identicon)[vish404](/maintainers/vish404)

---

Top Contributors

[![vish404](https://avatars.githubusercontent.com/u/15659965?v=4)](https://github.com/vish404 "vish404 (7 commits)")

---

Tags

laravellaravel-packagenextcloudnotifications

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/molnix-laravel-nextcloud-talk-channel/health.svg)

```
[![Health](https://phpackages.com/badges/molnix-laravel-nextcloud-talk-channel/health.svg)](https://phpackages.com/packages/molnix-laravel-nextcloud-talk-channel)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M165](/packages/spatie-laravel-health)[illuminate/http

The Illuminate Http package.

11937.9M6.9k](/packages/illuminate-http)[laravel-notification-channels/expo

Expo Notifications Channel for Laravel

67628.6k1](/packages/laravel-notification-channels-expo)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1235.9k20](/packages/fleetbase-core-api)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)

PHPackages © 2026

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