tomatophp / filament-wave
Wave Kit with custom builder for TomatoPHP Plugins
Fund package maintenance!
3x1io
Requires
- php: ^8.2|^8.3|^8.4
- ext-exif: *
- ext-gd: *
- bezhansalleh/filament-shield: ^3.3
- codeat3/blade-phosphor-icons: ^2.3
- devdojo/app: 0.11.0
- devdojo/themes: 0.0.11
- filament/filament: ^3.3
- filament/notifications: ^3.3
- filament/spatie-laravel-media-library-plugin: ^3.3
- livewire/livewire: ^3.6
- livewire/volt: ^1.6.7
- mallardduck/blade-boxicons: ^2.4
- psr/simple-cache: ^3.0
- ralphjsmit/livewire-urls: ^1.5
- stripe/stripe-php: ^16.6
- tomatophp/console-helpers: ^1.1
- tomatophp/filament-accounts: ^2.3
- tomatophp/filament-accounts-auth: ^1.0
- tomatophp/filament-language-switcher: ^1.0
- tomatophp/filament-menus: ^1.0
- tomatophp/filament-settings-hub: ^2.0
- tomatophp/filament-types: ^2.0
- tomatophp/filament-users: ^2.0
- tymon/jwt-auth: ^2.2
Requires (Dev)
- laravel/pint: ^1.21
- nunomaduro/larastan: ^3.1
- orchestra/testbench: ^10.0
- pestphp/pest: ^3.7
- pestphp/pest-plugin-laravel: ^3.1
- pestphp/pest-plugin-livewire: ^3.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
This package is auto-updated.
Last update: 2025-03-31 14:22:41 UTC
README
Filament Wave
Wave Kit with custom builder for TomatoPHP Plugins
Screenshots
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<\Database\Factories\UserFactory> */ 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
if you like to run PEST
testing just use this command
composer test
Code Style
if you like to fix the code style just use this command
composer format
PHPStan
if you like to check the code by PHPStan
just use this command
composer analyse
Other Filament Packages
Checkout our Awesome TomatoPHP