PHPackages                             itbm/laravel-jetstream-disable-personal-team - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. itbm/laravel-jetstream-disable-personal-team

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

itbm/laravel-jetstream-disable-personal-team
============================================

Disable personal teams in Laravel Jetstream

1.1.2(1y ago)13.4k↑1285.7%MITPHPPHP &gt;=8.1

Since Aug 13Pushed 1y ago1 watchersCompare

[ Source](https://github.com/itbm/laravel-jetstream-disable-personal-team)[ Packagist](https://packagist.org/packages/itbm/laravel-jetstream-disable-personal-team)[ Docs](https://github.com/itbm/laravel-jetstream-disable-personal-team)[ RSS](/packages/itbm-laravel-jetstream-disable-personal-team/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (4)Dependencies (2)Versions (5)Used By (0)

Jetstream Disable Personal Team
===============================

[](#jetstream-disable-personal-team)

This package allows you to disable the personal teams in Laravel Jetstream.

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

[](#requirements)

This package requires Laravel 10.x and Jetstream 2.x.

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

[](#installation)

You can install the package via composer:

```
composer require itbm/laravel-jetstream-disable-personal-team
```

Usage
-----

[](#usage)

### All

[](#all)

Update your `CreateNewUser.php` file to comment out the personal team creation logic:

```
return DB::transaction(function () use ($input) {
    return tap(User::create([
        'name' => $input['name'],
        'email' => $input['email'],
        'password' => Hash::make($input['password']),
    ]), function (User $user) {
        // $this->createTeam($user);
    });
});
```

Then, edit `web.php` and `api.php` to include the `require-team` middleware included with this package. This will redirect the user to the team creation page if they have not joined a team yet:

```
Route::middleware([
    'auth:sanctum',
    config('jetstream.auth_session'),
    'verified',
    'require-team',
])->group(function () {
    // ...
});
```

### Inertia Only

[](#inertia-only)

You will need to update your `AppLayout.vue` file. Find and replace these 2 lines:

```

```

with:

```

```

### Livewire Only

[](#livewire-only)

You will need to update your `navigation-menu.blade.php` file. Find and replace both instances of this line:

```
@if (Laravel\Jetstream\Jetstream::hasTeamFeatures())
```

with:

```
@if (Laravel\Jetstream\Jetstream::hasTeamFeatures() && Auth::user()->currentTeam)
```

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Total

4

Last Release

677d ago

PHP version history (2 changes)1.0.0PHP ^8.1

1.1.2PHP &gt;=8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22393016?v=4)[itbm](/maintainers/itbm)[@itbm](https://github.com/itbm)

---

Top Contributors

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

---

Tags

laraveljetstreamitbmlaravel-jetstream-disable-personal-team

### Embed Badge

![Health badge](/badges/itbm-laravel-jetstream-disable-personal-team/health.svg)

```
[![Health](https://phpackages.com/badges/itbm-laravel-jetstream-disable-personal-team/health.svg)](https://phpackages.com/packages/itbm-laravel-jetstream-disable-personal-team)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[spatie/laravel-passkeys

Use passkeys in your Laravel app

471890.7k39](/packages/spatie-laravel-passkeys)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M102](/packages/dedoc-scramble)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[wnx/laravel-backup-restore

A package to restore database backups made with spatie/laravel-backup.

213421.4k2](/packages/wnx-laravel-backup-restore)

PHPackages © 2026

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