PHPackages                             gru2007/filament-jetstream-ru - 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. gru2007/filament-jetstream-ru

ActiveLibrary[Framework](/categories/framework)

gru2007/filament-jetstream-ru
=============================

A Laravel starter kit built with Filament inspired by Jetstream.

1.0(8mo ago)00MITPHPPHP ^8.3

Since Sep 7Pushed 8mo agoCompare

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

READMEChangelog (1)Dependencies (11)Versions (2)Used By (0)

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;

...
->plugins([
    ...
    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};

...
->plugins([
    ...
    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};

...
->plugins([
    ...
    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

32

—

LowBetter than 72% of packages

Maintenance61

Regular maintenance activity

Popularity0

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80.9% 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 ~0 days

Total

2

Last Release

247d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0e7597e2e61edb4f74b294d43f545aa14d8637f4f8edf6a20dfdd13755262352?d=identicon)[gru2007](/maintainers/gru2007)

---

Top Contributors

[![stephenjude](https://avatars.githubusercontent.com/u/31182887?v=4)](https://github.com/stephenjude "stephenjude (165 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (13 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (9 commits)")[![tomhatzer](https://avatars.githubusercontent.com/u/3952168?v=4)](https://github.com/tomhatzer "tomhatzer (4 commits)")[![gpibarra](https://avatars.githubusercontent.com/u/21188012?v=4)](https://github.com/gpibarra "gpibarra (3 commits)")[![zvizvi](https://avatars.githubusercontent.com/u/4354421?v=4)](https://github.com/zvizvi "zvizvi (2 commits)")[![fabpl](https://avatars.githubusercontent.com/u/6574025?v=4)](https://github.com/fabpl "fabpl (2 commits)")[![gru2007](https://avatars.githubusercontent.com/u/78332542?v=4)](https://github.com/gru2007 "gru2007 (2 commits)")[![MominAlZaraa](https://avatars.githubusercontent.com/u/64691179?v=4)](https://github.com/MominAlZaraa "MominAlZaraa (2 commits)")[![wotta](https://avatars.githubusercontent.com/u/13332240?v=4)](https://github.com/wotta "wotta (1 commits)")[![LucaPipolo](https://avatars.githubusercontent.com/u/2393718?v=4)](https://github.com/LucaPipolo "LucaPipolo (1 commits)")

---

Tags

laravelfilamentstarter-kitstephenjudefilament-jetstream

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17554.3k2](/packages/stephenjude-filament-jetstream)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[blendbyte/filament-title-with-slug

TitleWithSlugInput - Easy Permalink Slugs for the FilamentPHP Form Builder (PHP / Laravel / Livewire)

1322.4k3](/packages/blendbyte-filament-title-with-slug)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)

PHPackages © 2026

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