PHPackages                             nrz/laravel-jitsi - 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. [Templating &amp; Views](/categories/templating)
4. /
5. nrz/laravel-jitsi

ActiveLibrary[Templating &amp; Views](/categories/templating)

nrz/laravel-jitsi
=================

A package to generate view of a Jitsi Meet room using Jitsi Meet IFrame API

01PHP

Since Mar 26Pushed 3y agoCompare

[ Source](https://github.com/abolfazlnorzad/laravel-jitsi)[ Packagist](https://packagist.org/packages/nrz/laravel-jitsi)[ RSS](/packages/nrz-laravel-jitsi/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Jitsi
=============

[](#laravel-jitsi)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3891b36714115ee41fff5abb0223d7005354a8528b0603408b4be58c8c7a0785/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616d7969736d6531332f6c61726176656c2d6a697473692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/amyisme13/laravel-jitsi)[![Build Status](https://camo.githubusercontent.com/683c6abb1f33499da4f05c24aa54d51e80afa0fb7653bda4c74f52fe0397f8d9/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f616d7969736d6531332f6c61726176656c2d6a697473692f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/amyisme13/laravel-jitsi)[![Total Downloads](https://camo.githubusercontent.com/c2b32642eff039ddc3aebd298a7b09bb658f5163238c72a4bd6286bbb8a1e192/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616d7969736d6531332f6c61726176656c2d6a697473692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/amyisme13/laravel-jitsi)

A package to generate view of a Jitsi Meet room using Jitsi Meet IFrame API.

Jitsi Meet Prerequisites
------------------------

[](#jitsi-meet-prerequisites)

Your Jitsi Meet host must use the token authentication. Currently this package also require your Jitsi Host to allow anonymous user to join by configuring the anonymousdomain (might change later).

If you are self-hosting your Jitsi Meet instance, here are some article that might help:

- [JWT token authentication Prosody plugin](https://github.com/jitsi/lib-jitsi-meet/blob/master/doc/tokens.md)
- [Rocket Chat part 3: Installing Jitsi with JWT for secure video conferencing](https://medium.com/@szewong/rocket-chat-part-3-installing-jitsi-with-jwt-for-secure-video-conferencing-b6f909e7f92c)
- [Here’s how you should install jitsi-meet-tokens on debian 10 (luajwtjitsi problem)](https://community.jitsi.org/t/heres-how-you-should-install-jitsi-meet-tokens-on-debian-10/59606)
- [Compile your own lua\_cjson](https://community.jitsi.org/t/jwt-token-authentication-broken-on-debian-10-with-openssl-1-1/31027/5)
- [Prosody token + anonymous authentication config](https://github.com/jitsi/jitsi-meet/pull/5025#issuecomment-580013383)

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

[](#installation)

You can install the package via composer:

```
composer require amyisme13/laravel-jitsi
```

Add these variables to your .env file

```
# Domain of the jitsi meet instance
JITSI_APP_DOMAIN=
# App id
JITSI_APP_ID=
# Secret key used to generate jwt
JITSI_APP_SECRET=
```

Add the trait `\Amyisme13\LaravelJitsi\Traits\HasJitsiAttributes` to your **User** model.

```
use Amyisme13\LaravelJitsi\Traits\HasJitsiAttributes;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{

    use HasJitsiAttributes;

}
```

Simple Usage
------------

[](#simple-usage)

In your `web.php` route file, call the `jitsi` route macro.

```
Route::jitsi();
```

Then visit `/jitsi/` to join a conference call. Visiting this url when you are authenticated will set your display name, email, avatar and also grant you the moderator role.

TODO: More Usage
----------------

[](#todo-more-usage)

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Azmi Makarima](https://github.com/amyisme13)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://www.gravatar.com/avatar/867c6a1c60d6af5d83d1c5e6e9569f16188ef9a7e45767d1665f62698cd8a3c1?d=identicon)[abolfazlnorzad](/maintainers/abolfazlnorzad)

---

Top Contributors

[![amyisme13](https://avatars.githubusercontent.com/u/24242755?v=4)](https://github.com/amyisme13 "amyisme13 (14 commits)")[![abolfazlnorzad](https://avatars.githubusercontent.com/u/69985608?v=4)](https://github.com/abolfazlnorzad "abolfazlnorzad (2 commits)")

### Embed Badge

![Health badge](/badges/nrz-laravel-jitsi/health.svg)

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

###  Alternatives

[limenius/react-bundle

Client and Server-side react rendering in a Symfony Bundle

3851.2M](/packages/limenius-react-bundle)[area17/laravel-auto-head-tags

Laravel Auto Head Tags helps you build the list of head elements for your app

4616.1k](/packages/area17-laravel-auto-head-tags)[jelix/wikirenderer

WikiRenderer is a library to generate HTML or anything else from wiki content.

1712.3k1](/packages/jelix-wikirenderer)[webkinder/sproutset

A Composer package for handling responsive images in Roots Bedrock + Sage + Blade projects.

282.2k](/packages/webkinder-sproutset)

PHPackages © 2026

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