PHPackages                             mtgofa/bigbluebutton - 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. mtgofa/bigbluebutton

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

mtgofa/bigbluebutton
====================

Bigbluebutton wrapper for laravel 7

2.1.0(5y ago)0481MITPHPPHP &gt;=5.6.4

Since Jan 27Pushed 5y agoCompare

[ Source](https://github.com/mtgofa/Laravel-Bigbluebutton)[ Packagist](https://packagist.org/packages/mtgofa/bigbluebutton)[ RSS](/packages/mtgofa-bigbluebutton/feed)WikiDiscussions dev Synced today

READMEChangelog (2)Dependencies (2)Versions (7)Used By (0)

BigBlueButton API Wrapper for Laravel
=====================================

[](#bigbluebutton-api--wrapper-for-laravel)

This is a laravel wrapper for BigBlueButton API

Requirements
------------

[](#requirements)

- Laravel 6.6 or above.

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

[](#installation)

Require package in your composer.json and update composer. This downloads the package and the official bigbluebutton php library.

```
composer require mtgofa/bigbluebutton

```

After updating composer, add the ServiceProvider to the providers array in config/app.php

```
 mtgofa\Bigbluebutton\BigbluebuttonProviderService::class,

```

You can optionally use the facade for shorter code. Add this to your facades:

```
'Meeting' => mtgofa\Bigbluebutton\BigbluebuttonMeeting::class,

```

Usage
-----

[](#usage)

You can define Big blue button secret key and server url in two ways.

1. Define in .env file

`BBB_SECURITY_SALT =bbb_secret_key`
`BBB_SERVER_BASE_URL=https://example.com/bigbluebutton/`

2. Define in config/bigbluebutton.php

```
 'BBB_SECURITY_SALT' => 'bbb_secret_key',
 'BBB_SERVER_BASE_URL' => 'https://example.com/bigbluebutton/',

```

Via Dependency Injection in Controller
--------------------------------------

[](#via-dependency-injection-in-controller)

**List all meetings**

```
namespace App\Http\Controllers;

class MeetingController extends Controller
{
    /**
     * @var \mtgofa\Bigbluebutton\Contracts\Meeting
     */
    protected $meeting;

    public function __construct(Meeting $meeting)
    {
        $this->meeting = $meeting;
    }

    /**
     *  Returns a list of meetings
     */
    public function all()
    {
        $meetings = $this->meeting->all();
        if ($meetings) {
            // do something with meetings
        }
    }
```

**Create meeting**

```
use mtgofa\Bigbluebutton\Contracts\Meeting;
use BigBlueButton\Parameters\CreateMeetingParameters;
use Illuminate\Http\Request;

class MeetingController extends Controller
{
    /**
     * @var \mtgofa\Bigbluebutton\Contracts\Meeting
     */
    protected $meeting;

    public function __construct(Meeting $meeting)
    {
        $this->meeting = $meeting;
    }

        /**
         * Create a bigbluebutton meeting
         *
         * @param \Illuminate\Http\Request $request
         * @return void
         */
        public function create(Request $request)
        {
            $meetingParams = new CreateMeetingParameters($request->meetingId, $request->meetingName);
            $meetingParams->setDuration(40);
            $meetingParams->setModeratorPassword('supersecretpwd');

            if ($this->meeting->create($meetingParams)) {
                // Meeting was created
            }
        }
```

**Join a meeting**

```
use mtgofa\Bigbluebutton\Contracts\Meeting;
use BigBlueButton\Parameters\JoinMeetingParameters;
use Illuminate\Http\Request;

class MeetingController extends Controller
{
    /**
     * @var \mtgofa\Bigbluebutton\Contracts\Meeting
     */
    protected $meeting;

    public function __construct(Meeting $meeting)
    {
        $this->meeting = $meeting;
    }

    /**
     *  Join a bigbluebutton meeting
     *
     * @param \Illuminate\Http\Request $request
     * @return void
     */
    public function join(Request $request)
    {
        $meetingParams = new JoinMeetingParameters($request->meetingID, $request->meetingName, 'MyMeetingPassword');
        $meetingParams->setRedirect(true);
        $meetingUrl = $this->meeting->join($meetingParams);
        redirect()->setTargetUrl($meetingUrl);
    }

}
```

**Close meeting**

```
use mtgofa\Bigbluebutton\Contracts\Meeting;
use BigBlueButton\Parameters\EndMeetingParameters;
use Illuminate\Http\Request;

class MeetingController extends Controller
{
    /**
     * @var \mtgofa\Bigbluebutton\Contracts\Meeting
     */
    protected $meeting;

    public function __construct(Meeting $meeting)
    {
        $this->meeting = $meeting;
    }

    /**
     * End a bigbuebutton meeting
     *
     * @param \Illuminate\Http\Request $request
     * @return void
     */
    public function close(Request $request)
    {
        $meetingParams = new EndMeetingParameters($request->meetingID, $request->moderator_password);
        $this->meeting->close($meetingParams);
    }
}
```

Via Laravel Facade
------------------

[](#via-laravel-facade)

You can also manage meetings using the facade

```
Meeting::all(); //get a list of all meetings
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 83.3% 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 ~175 days

Recently: every ~219 days

Total

6

Last Release

2148d ago

Major Versions

v0.0.1 → 5.4.x-dev2018-02-19

PHP version history (2 changes)5.3.x-devPHP &gt;=5.6.4

5.5.x-devPHP &gt;=7.0.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/d7b72276a2f858bad75b4d3a983aa47b87662ec76e6e094bf7c0f0c3338cd01a?d=identicon)[mtgofa](/maintainers/mtgofa)

---

Top Contributors

[![mtgofa](https://avatars.githubusercontent.com/u/22940727?v=4)](https://github.com/mtgofa "mtgofa (5 commits)")[![abiodunjames](https://avatars.githubusercontent.com/u/14722744?v=4)](https://github.com/abiodunjames "abiodunjames (1 commits)")

---

Tags

laravelwrapperbigbluebutton

### Embed Badge

![Health badge](/badges/mtgofa-bigbluebutton/health.svg)

```
[![Health](https://phpackages.com/badges/mtgofa-bigbluebutton/health.svg)](https://phpackages.com/packages/mtgofa-bigbluebutton)
```

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[whitecube/laravel-timezones

Store UTC dates in the database and work with custom timezones in the application.

106106.2k](/packages/whitecube-laravel-timezones)[forxer/laravel-gravatar

A library providing easy gravatar integration in a Laravel project.

4235.6k](/packages/forxer-laravel-gravatar)[iteks/laravel-enum

A comprehensive Laravel package providing enhanced enum functionalities, including attribute handling, select array conversions, and fluent facade interactions for robust enum management in Laravel applications.

2516.7k](/packages/iteks-laravel-enum)[wujunze/money-wrapper

MoneyPHP Wrapper

113.8k](/packages/wujunze-money-wrapper)

PHPackages © 2026

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