Skip to content

Releases: tomatophp/filament-plugins

v1.1.6

26 Sep 10:07
3e00a8d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.5...v1.1.6

v1.1.5

23 Sep 15:27
Compare
Choose a tag to compare

Full Changelog: v1.1.4...v1.1.5

v1.1.4

23 Sep 13:46
Compare
Choose a tag to compare

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

Full Changelog: v1.1.3...v1.1.4

v1.1.3

18 Sep 10:16
Compare
Choose a tag to compare
  • update cover image h-full

Full Changelog: v1.1.2...v1.1.3

v1.1.2

16 Sep 14:30
Compare
Choose a tag to compare
  • wrong when using not ID as slug when tenancy enabled #21 by @3x1io

Full Changelog: v1.1.1...v1.1.2

v1.1.1

16 Sep 14:27
Compare
Choose a tag to compare
  • update table per page options.

Full Changelog: v1.1.0...v1.1.1

v1.1.0

16 Sep 11:50
Compare
Choose a tag to compare

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.

Full Changelog: v1.0.15...v1.1.0

v1.0.15

08 Jul 10:43
Compare
Choose a tag to compare

fix Glitch in the UI while creating migrations #19 by @3x1io

Full Changelog: v1.0.14...v1.0.15

v1.0.14

24 Jun 21:36
Compare
Choose a tag to compare

Full Changelog: v1.0.13...v1.0.14

v1.0.13

24 Jun 21:00
Compare
Choose a tag to compare
  • Unable to create model, resource, page etc.. #17 by @3x1io

Full Changelog: v1.0.12...v1.0.13