Search by

tomatophp / filament-plugins

fadymondy

Manage your modules as a plugin system with plugin generator

Package info

github.com/tomatophp/filament-plugins

Homepage

pkg:composer/tomatophp/filament-plugins

Fund package maintenance!

3x1io

Statistics

Installs: 4 989

Dependents: 2

Suggesters: 0

Stars: 65

Open Issues: 0

5.0.0 2026-09-17 13:55 UTC

README

Screenshot

Filament Plugins Manager & Generator

Latest Stable Version License Downloads

Manage your modules as a plugin system with plugin generator

Compatibility

Package Filament Laravel PHP
5.x 5.x 12.x / 13.x 8.2+
1.x (branch v3) 3.x 10.x / 11.x 8.1+

Screenshots

Plugins Plugins Dark Table Builder Table Builder Dark

Installation

nwidart/laravel-modules v13 pulls in wikimedia/composer-merge-plugin, which Composer blocks by default, so allow it first:

composer config allow-plugins.wikimedia/composer-merge-plugin true
composer require tomatophp/filament-plugins:^5.0

The plugin cards ship their own stylesheet (Filament v5 panels only compile Filament's own utilities); publish it after installing or updating:

php artisan filament:assets

after install your package please run this command

php artisan filament-plugins:install

By default the module classes are not loaded automatically. You can autoload your modules by adding merge-plugin to the extra section:

"extra": {
    "laravel": {
        "dont-discover": []
    },
    "merge-plugin": {
        "include": [
            "Modules/*/composer.json"
        ]
    }
},

now you need to run this command to autoload your modules

composer dump-autoload

finally reigster the plugin on /app/Providers/Filament/AdminPanelProvider.php

->plugin(\TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make())

Usage

you can create a new plugin using just a command

php artisan filament-plugins:generate

or you can use the GUI to create a new plugin, after create a plugin you need to make sure that it's loaded on composer by run this command

composer dump-autoload

after create the plugin you can create a new table inside it and than run the migration generator to convert it to a migration file then you can use the GUI to generate resources, pages, widget or model, or you can easy use this commands

php artisan filament-plugins:model
php artisan filament-plugins:resource
php artisan filament-plugins:page
php artisan filament-plugins:widget

it will generate the files for you and you can use it directly, please note that you need to generate the model first than use other commands

Install Plugins using command line

you can install a plugins using the command line by using this command

php artisan filament:plugins

you can select all to install all TomatoPHP ecosystem plugins or you can select the plugin you want to install

List of all TomatoPHP Plugins

you can list all TomatoPHP plugins by using this command

php artisan filament-plugins:list

List your package on the plugins list

you can list your package on the plugins list by adding this a json file in your package root folder with name module.json with content like this:

{
    "name": "FilamentAccounts",
    "alias": "filament-accounts",
    "description": {
        "ar": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "en": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "gr": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts",
        "sp": "full accounts manager with API\/Notifications\/Contacts to manage your contacts and accounts"
    },
    "keywords": [],
    "priority": 0,
    "providers": [
        "TomatoPHP\\FilamentAccounts\\FilamentAccountsServiceProvider"
    ],
    "files": [],
    "title": {
        "ar": "Filament Accounts",
        "en": "Filament Accounts",
        "gr": "Filament Accounts",
        "sp": "Filament Accounts"
    },
    "color": "#007dff",
    "icon": "heroicon-c-user-circle",
    "placeholder": "placeholder.webp",
    "type": "lib",
    "version": "v1.0",
    "github" : "https://github.com/tomatophp/filament-accounts",
    "docs" : "https://github.com/tomatophp/filament-accounts"
}

make sure you allow packages scan on the filament-plugins.php config file

'scan' => true

now you can publish your package as module with the very easy way use this command

php artisan filament-plugins:publish

and input your package name from the list and it will move it to your module folder and register the provider to you, so you can custom anything you like on the package.

Use Selected Module in your panel

you can use the selected module in your panel by using this code in your PanelProvider

->plugin(\TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make()->modules([
    'CRM'
]))

so you will see only the selected modules in your panel

Get Only Current Panel Plugins

on any plugin you can create a Page/Resource/Widget for selected panel, so if you need to showup only the current panel Page/Resources/Widgets you can use this code in your PanelProvider

->plugin(\TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make()->discoverCurrentPanelOnly())

Stop Auto Discover Module Resources

you can stop auto-load module resources by using this code in your PanelProvider

->plugin(\TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make()->autoDiscoverModules(false))

Lock Down File-Writing Features

Everything is allowed by default (same as the filament-plugins.php config file). On a shared or public panel you can turn off every feature that writes files, extracts ZIP files, runs migrate, or enables, disables or deletes modules:

->plugin(
    \TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make()
        ->allowCreate(false)    // "Create Plugin" action (runs module:make and writes files)
        ->allowImport(false)    // "Import Plugin" action (extracts a ZIP into the modules folder)
        ->allowToggle(false)    // enable / disable actions for one or all modules
        ->allowDestroy(false)   // delete module action (removes the module folder)
        ->allowGenerator(false) // tables builder, migrations and resource / page / widget / model generator
)

The "Create Migration" action drops and recreates the table, so it only ever touches tables the builder created itself: the table row gets a migrated_at timestamp when it is migrated and the module must still contain the generated *_create_{table}_table.php migration. If a table with the same name already exists and the builder does not own it, nothing is dropped and a notification explains why. Table names must be snake_case (^[a-z][a-z0-9_]*$, max 64 characters), unique in the builder and must not match an existing database table. Run php artisan migrate after upgrading to add the migrated_at column.

Each option falls back to the matching config key (allow_create, allow_upload, allow_toggle, allow_destroy, allow_generator) when you don't call it.

Stop Using Plugins UI

you can stop using the plugins UI by using this code in your PanelProvider

->plugin(\TomatoPHP\FilamentPlugins\FilamentPluginsPlugin::make()->useUI(false))

Publish Assets

you can publish config file by use this command

php artisan vendor:publish --tag="filament-plugins-config"

you can publish views file by use this command

php artisan vendor:publish --tag="filament-plugins-views"

you can publish languages file by use this command

php artisan vendor:publish --tag="filament-plugins-lang"

you can publish migrations file by use this command

php artisan vendor:publish --tag="filament-plugins-migrations"

Other Filament Packages

Checkout our Awesome TomatoPHP