PHPackages                             tomatophp/filament-wave - 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. [Admin Panels](/categories/admin)
4. /
5. tomatophp/filament-wave

ActiveLibrary[Admin Panels](/categories/admin)

tomatophp/filament-wave
=======================

Wave Kit with custom builder for TomatoPHP Plugins

1.0.1(1y ago)3432[4 PRs](https://github.com/tomatophp/filament-wave/pulls)MITCSSPHP ^8.2|^8.3|^8.4CI passing

Since Mar 31Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/tomatophp/filament-wave)[ Packagist](https://packagist.org/packages/tomatophp/filament-wave)[ Docs](https://wave.devdojo.com)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-wave/feed)WikiDiscussions master Synced 1mo ago

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

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/3x1io-tomato-wave.jpg)](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/3x1io-tomato-wave.jpg)

Filament Wave
=============

[](#filament-wave)

[![Latest Stable Version](https://camo.githubusercontent.com/682962a84ba52af550446bcb54468882406fb18e0e8b76cd783842795624b631/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d776176652f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-wave)[![License](https://camo.githubusercontent.com/52ab05abcafa5f03eabc20af6140b1037a18d49abb145020e19e375e7c25419d/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d776176652f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-wave)[![Downloads](https://camo.githubusercontent.com/2daeb7594c4f5ef80047945ae8957f9675669c4e434a61a7272056de4018946a/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d776176652f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-wave)

Wave Kit with custom builder for TomatoPHP Plugins

Screenshots
-----------

[](#screenshots)

[![Wave Kit Light](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/light.png)](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/light.png)[![Wave Kit Dark](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/dark.png)](https://raw.githubusercontent.com/tomatophp/filament-wave/master/arts/dark.png)

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

[](#installation)

Caution

Use it on a fresh Laravel 12 project and if you have a database take a backup before use this package.

```
composer require tomatophp/filament-wave
```

after install you need to add `HasRoles` to your `User.php` model and add `isAdmin()` fn like this

```
use Spatie\Permission\Traits\HasRoles;

class User extends Authenticatable
{
    /** @use HasFactory */
    use HasFactory, Notifiable;
    use HasRoles;

    public function isAdmin(): bool
    {
        return true;
    }
}
```

and on your `routes/web.php` add this line and remove all other routes

```
\Wave\Facades\Wave::routes();
```

and on your `config/auth.php` we need to add `accounts` guard like this

```
'guards' => [
    'web' => [
        'driver' => 'session',
        'provider' => 'users',
    ],
    'accounts' => [
        'driver' => 'session',
        'provider' => 'accounts',
    ],
],

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => env('AUTH_MODEL', App\Models\User::class),
    ],
    'accounts' => [
        'driver' => 'eloquent',
        'model' => App\Models\Account::class,
    ],
]
```

then you can run this command

```
php artisan config:cache
php artisan notifications:table
php artisan filament:install --panels
php artisan filament-wave:install
npm i
npm run build
php artisan optimize
```

if you are not using this package as a plugin please register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugin(\Wave\FilamentWavePlugin::make())
```

now you need to optimize the views

```
php artisan optimize
```

Testing
-------

[](#testing)

if you like to run `PEST` testing just use this command

```
composer test
```

Code Style
----------

[](#code-style)

if you like to fix the code style just use this command

```
composer format
```

PHPStan
-------

[](#phpstan)

if you like to check the code by `PHPStan` just use this command

```
composer analyse
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance72

Regular maintenance activity

Popularity13

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.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 ~7 days

Total

2

Last Release

397d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (32 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")

---

Tags

laraveladminsaasfilamentphppaneltomatophp

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tomatophp-filament-wave/health.svg)

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

###  Alternatives

[devdojo/wave

Wave SaaS Starter Kit

6.4k1.0k](/packages/devdojo-wave)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)[riodwanto/superduper-filament-starter-kit

A comprehensive Laravel Filament 3 💡 starter kit with pre-installed plugins, admin panel, user management, SEO tools, theme customization, and content management for rapid application development

2708.5k](/packages/riodwanto-superduper-filament-starter-kit)[tomatophp/filament-saas-panel

Ready to use SaaS panel with integration of Filament Accounts Builder and JetStream teams

421.1k](/packages/tomatophp-filament-saas-panel)[dcat-plus/laravel-admin

dcat-plus admin

1383.1k8](/packages/dcat-plus-laravel-admin)[tomatophp/filament-pos

POS System for FilamentPHP with a lot of features and integration with Ecommerce Builder

681.5k](/packages/tomatophp-filament-pos)

PHPackages © 2026

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