PHPackages                             stephenjude/filament-jetstream - 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. [Framework](/categories/framework)
4. /
5. stephenjude/filament-jetstream

ActiveLibrary[Framework](/categories/framework)

stephenjude/filament-jetstream
==============================

A Laravel starter kit built with Filament inspired by Jetstream.

2.0.1(1mo ago)17861.9k↓54.4%34[2 issues](https://github.com/stephenjude/filament-jetstream/issues)3MITPHPPHP ^8.3CI passing

Since Feb 29Pushed 1mo ago3 watchersCompare

[ Source](https://github.com/stephenjude/filament-jetstream)[ Packagist](https://packagist.org/packages/stephenjude/filament-jetstream)[ Docs](https://github.com/stephenjude/filament-jetstream)[ GitHub Sponsors](https://github.com/stephenjude)[ RSS](/packages/stephenjude-filament-jetstream/feed)WikiDiscussions 2.x Synced 2w ago

READMEChangelog (10)Dependencies (60)Versions (45)Used By (3)

Filament Jetstream — A Laravel Starter Kit Built With Filament
==============================================================

[](#filament-jetstream--a-laravel-starter-kit-built-with-filament)

[![Edit Profile](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/banner.jpg)](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/banner.jpg)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b5ea25952d7dcd6c8828affe054406d679e1363404f79d64ab9a3edfd4dc5802/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7374657068656e6a7564652f66696c616d656e742d6a657473747265616d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/stephenjude/filament-jetstream)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c1847e42f4d6a1b8772aff19e698ca6a0f44450c2f53107de11698a75bda0866/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7374657068656e6a7564652f66696c616d656e742d6a657473747265616d2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/stephenjude/filament-jetstream/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/fd38391ade526b071f23d7c78e2305533c320e36afa36aadd62e2743bffc537c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7374657068656e6a7564652f66696c616d656e742d6a657473747265616d2f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/stephenjude/filament-jetstream/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/e270d6aa3ac5e5d37669ab731f206cff81a3dffe954de84f0b6cf8a0c17d59fa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7374657068656e6a7564652f66696c616d656e742d6a657473747265616d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/stephenjude/filament-jetstream)

Filament Jetstream, just like [Laravel Jetstream](https://jetstream.laravel.com/introduction.html) is a beautifully designed application starter kit for Laravel and provides the perfect starting point for your next Laravel application.

Includes auth, registration, 2FA, session management, API tokens, and team support, all implemented with **native Filament panels and components**.

Skip boilerplate, start building features.

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

[](#installation)

You can install the package via composer:

```
composer require stephenjude/filament-jetstream

php artisan filament-jetstream:install --teams --api
```

You can remove the `--teams` and `--api` arguments if you don't want those features.

Features
--------

[](#features)

##### 🔐 Authentication

[](#-authentication)

[![Profile](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/login.jpeg)](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/login.jpeg)

##### 👤 User Profile

[](#-user-profile)

[![Profile](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/profile.jpeg)](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/profile.jpeg)

##### 👥 Team (Optional)

[](#-team-optional)

[![Profile](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/team.jpeg)](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/team.jpeg)

##### 🔑 API Tokens (Optional)

[](#-api-tokens-optional)

[![Profile](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/tokens.jpeg)](https://raw.githubusercontent.com/stephenjude/filament-jetstream/main/art/tokens.jpeg)

##### 🌍 Translation-ready

[](#-translation-ready)

Usage &amp; Configurations
--------------------------

[](#usage--configurations)

#### Configuring the User Profile

[](#configuring-the-user-profile)

```
use \App\Models\User;
use Filament\Jetstream\JetstreamPlugin;
use Illuminate\Validation\Rules\Password;

...
JetstreamPlugin::make()
    ->configureUserModel(userModel: User::class)
    ->profilePhoto(condition: fn() => true, disk: 'public')
    ->deleteAccount(condition: fn() => true)
    ->updatePassword(condition: fn() => true, Password::default())
    ->profileInformation(condition: fn() => true)
    ->logoutBrowserSessions(condition: fn() => true)
    ->twoFactorAuthentication(
        condition: fn() => auth()->check(),
        forced: fn() => app()->isProduction(),
        enablePasskey: fn() =>  Feature::active('passkey'),
        requiresPassword: fn() => app()->isProduction(),
    )
```

#### Configuring Team features

[](#configuring-team-features)

```
use \Filament\Jetstream\Role;
use Filament\Jetstream\JetstreamPlugin;
use Illuminate\Validation\Rules\Password;
use \Filament\Jetstream\Models\{Team,Membership,TeamInvitation};

...
JetstreamPlugin::make()
    ->teams(
        condition: fn() => Feature::active('teams'),
        acceptTeamInvitation: fn($invitationId) => JetstreamPlugin::make()->defaultAcceptTeamInvitation()
    )
    ->configureTeamModels(
        teamModel: Team::class,
        roleModel: Role::class,
        membershipModel: Membership::class,
        teamInvitationModel:  TeamInvitation::class
    )
```

#### Configuring API features

[](#configuring-api-features)

```
use Filament\Jetstream\JetstreamPlugin;
use Illuminate\Validation\Rules\Password;
use \Filament\Jetstream\Role;
use \Filament\Jetstream\Models\{Team, Membership, TeamInvitation};

JetstreamPlugin::make()
    ->apiTokens(
        condition: fn() => Feature::active('api'),
        permissions: fn() => ['create', 'read', 'update', 'delete'],
        menuItemLabel: fn() => 'API Tokens',
        menuItemIcon: fn() => 'heroicon-o-key',
    ),
```

Existing Laravel projects
-------------------------

[](#existing-laravel-projects)

### Installing the Profile feature

[](#installing-the-profile-feature)

#### Publish profile migrations

[](#publish-profile-migrations)

Run the following command to publish the profile migrations.

```
php artisan vendor:publish \
  --tag=filament-jetstream-migrations \
  --tag=passkeys-migrations \
  --tag=filament-two-factor-authentication-migrations
```

#### Add profile feature traits to the User model

[](#add-profile-feature-traits-to-the-user-model)

Update the `App\Models\User` model:

```
...
use Filament\Jetstream\HasProfilePhoto;
use Filament\Models\Contracts\HasAvatar;
use Spatie\LaravelPasskeys\Models\Concerns\HasPasskeys;
use \Filament\Jetstream\InteractsWIthProfile;

class User extends Authenticatable implements  HasAvatar, HasPasskeys
{
    ...
    use InteractsWIthProfile;

    protected $hidden = [
        ...
        'two_factor_recovery_codes',
        'two_factor_secret',
    ];

    protected $appends = [
        ...
        'profile_photo_url',
    ];
}
```

### Installing the Team Features

[](#installing-the-team-features)

#### Publish team migration

[](#publish-team-migration)

Run the following command to publish the **team** migrations.

```
php artisan vendor:publish --tag=filament-jetstream-team-migration
```

#### Add team feature traits to User model

[](#add-team-feature-traits-to-user-model)

Update `App\Models\User` model to implement 'Filament\\Models\\Contracts\\HasTenants' and use `Filament\Jetstream\InteractsWithTeams` trait.

```
...
use Filament\Jetstream\InteractsWithTeams;
use Filament\Models\Contracts\HasTenants;

class User extends Authenticatable implements  HasTenants
{
    ...
    use InteractsWithTeams;
}
```

### Installing the API Features

[](#installing-the-api-features)

#### Publish team migration

[](#publish-team-migration-1)

Run the following command to publish the **team** migrations.

```
php artisan vendor:publish --tag=filament-jetstream-team-migration
```

#### Add api feature trait to User model

[](#add-api-feature-trait-to-user-model)

Update `App\Models\User` model to use `Laravel\Sanctum\HasApiTokens` trait.

```
...
use \Laravel\Sanctum\HasApiTokens;

class User extends Authenticatable
{
    use HasApiTokens;
}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [stephenjude](https://github.com/stephenjude)
- [taylorotwell](https://github.com/taylorotwell)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

62

—

FairBetter than 99% of packages

Maintenance89

Actively maintained with recent releases

Popularity48

Moderate usage in the ecosystem

Community29

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

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

###  Release Activity

Cadence

Every ~20 days

Total

42

Last Release

56d ago

Major Versions

0.4.x-dev → 1.0.02025-08-23

1.x-dev → 2.0.02026-05-31

PHP version history (2 changes)0.0.1PHP ^8.1

1.0.0PHP ^8.3

### Community

Maintainers

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

---

Top Contributors

[![stephenjude](https://avatars.githubusercontent.com/u/31182887?v=4)](https://github.com/stephenjude "stephenjude (210 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (20 commits)")[![MominAlZaraa](https://avatars.githubusercontent.com/u/64691179?v=4)](https://github.com/MominAlZaraa "MominAlZaraa (16 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (11 commits)")[![tomhatzer](https://avatars.githubusercontent.com/u/3952168?v=4)](https://github.com/tomhatzer "tomhatzer (4 commits)")[![hzlea](https://avatars.githubusercontent.com/u/47654361?v=4)](https://github.com/hzlea "hzlea (3 commits)")[![gpibarra](https://avatars.githubusercontent.com/u/21188012?v=4)](https://github.com/gpibarra "gpibarra (3 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (2 commits)")[![fabpl](https://avatars.githubusercontent.com/u/6574025?v=4)](https://github.com/fabpl "fabpl (2 commits)")[![zvizvi](https://avatars.githubusercontent.com/u/4354421?v=4)](https://github.com/zvizvi "zvizvi (2 commits)")[![YoussefGoher](https://avatars.githubusercontent.com/u/127972819?v=4)](https://github.com/YoussefGoher "YoussefGoher (2 commits)")[![LucaPipolo](https://avatars.githubusercontent.com/u/2393718?v=4)](https://github.com/LucaPipolo "LucaPipolo (1 commits)")[![cklei-carly](https://avatars.githubusercontent.com/u/68525320?v=4)](https://github.com/cklei-carly "cklei-carly (1 commits)")[![wotta](https://avatars.githubusercontent.com/u/13332240?v=4)](https://github.com/wotta "wotta (1 commits)")

---

Tags

laravelfilamentstarter-kitstephenjudefilament-jetstream

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/stephenjude-filament-jetstream/health.svg)

```
[![Health](https://phpackages.com/badges/stephenjude-filament-jetstream/health.svg)](https://phpackages.com/packages/stephenjude-filament-jetstream)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[jeffgreco13/filament-breezy

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

1.0k2.2M77](/packages/jeffgreco13-filament-breezy)[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

316.8k2](/packages/finity-labs-fin-mail)[stephenjude/filament-debugger

About

104173.6k2](/packages/stephenjude-filament-debugger)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

85240.3k9](/packages/stephenjude-filament-two-factor-authentication)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16429.7k](/packages/backstage-mails)

PHPackages © 2026

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