Helper Classes
Helper Class Generator to manage your forms and table inside your filament app
Author:
Fady Mondy
Documentation

Helper Class Generator to manage your forms and table inside your filament app
#Screenshots

#Installation
composer require tomatophp/filament-helpers
#Using
to generate a new helper class you can use this command
php artisan filament:helpers
and select the type and name, and you can generate the class inside module or on selected path inside your resource.
#Using Generated Class
and you can use the generated class like this
use App\Filament\Resources\AccountResource\Forms\UserForm;
public function form(Form $form): Form
{
return UserForm::make($form);
}
use App\Filament\Resources\AccountResource\Tables\UserTable;
public function form(Table $table): Table
{
return UserTable::make($table);
}
use App\Filament\Resources\AccountResource\Actions\UserActions;
public function table(Table $table): Table
{
return $table->actions(UserActions::make());
}
use App\Filament\Resources\AccountResource\Actions\UserFilters;
public function table(Table $table): Table
{
return $table->filters(UserFilters::make());
}
#Other Filament Packages
Checkout our Awesome TomatoPHP
The author
Helper Class Generator to manage your forms and table inside your filament app
From the same author
Tenancy Multi-database
Tenancy multi-database integration for FilamentPHP
Author:
Fady Mondy
Menu Generator
Menu view generator using view component
Author:
Fady Mondy
Translations Manager
Manage your translation with DB and cache, you can scan an collect translation strings like `trans()` and `__()`, and translate them using UI
Author:
Fady Mondy
Meta Manager
Convert any model on your app to pluggable model using Meta and get ready to use relation manager on FilamentPHP panel
Author:
Fady Mondy
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Data Lens
Advanced Data Visualization for Laravel Filament - a premium reporting solution enabling custom column creation, sophisticated filtering, and enterprise-grade data insights within admin panels.
Padmission