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)22.1k↑50%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 1mo 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 75% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

624d ago

PHP version history (2 changes)1.0.0PHP ^8.1

1.1.2PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/4aa32e90d5b7888c1f665f71ddd622e73a85be5c3f2133a6bd14278bbf303d57?d=identicon)[itbm](/maintainers/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.9k89.8M1.0k](/packages/spatie-laravel-permission)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[jeffgreco13/filament-breezy

A custom package for Filament with login flow, profile and teams support.

1.0k1.7M41](/packages/jeffgreco13-filament-breezy)[spatie/laravel-login-link

Quickly login to your local environment

4381.2M1](/packages/spatie-laravel-login-link)[ryangjchandler/laravel-cloudflare-turnstile

A simple package to help integrate Cloudflare Turnstile.

438896.6k2](/packages/ryangjchandler-laravel-cloudflare-turnstile)[spatie/laravel-passkeys

Use passkeys in your Laravel app

444494.4k16](/packages/spatie-laravel-passkeys)

PHPackages © 2026

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