tomatophp/filament-plugins

Manage your modules as a plugin system with plugin generator

Fund package maintenance!
3x1io

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 0

Language:Dart

v1.0.4 2024-04-22 11:11 UTC

This package is auto-updated.

Last update: 2024-04-22 11:12:05 UTC


README

Screenshot

Filament plugins

Latest Stable Version PHP Version Require License Downloads

Manage your modules as a plugin system with plugin generator

Screenshots

Plugins Tables Generate Create Col Table cols

Installation

composer require tomatophp/filament-plugins

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

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 filament-plugin.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",
    "pages": [
    ],
    "resources": [],
    "widgets": [],
    "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

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"

Support

you can join our discord server to get support TomatoPHP

Docs

you can check docs of this package on Docs

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security

Please see SECURITY for more information about security.

Credits

License

The MIT License (MIT). Please see License File for more information.