jeffersongoncalves/filament-how-it-works

Filament v5 panel plugin providing admin UI (CRUD) for jeffersongoncalves/laravel-how-it-works — manage "how it works" steps.

Maintainers

Package info

github.com/jeffersongoncalves/filament-how-it-works

pkg:composer/jeffersongoncalves/filament-how-it-works

Transparency log

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

3.0.0 2026-08-29 23:44 UTC

This package is auto-updated.

Last update: 2026-08-31 01:52:15 UTC


README

Filament How It Works

Filament How It Works

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads License

Filament admin UI (CRUD) for jeffersongoncalves/laravel-how-it-works — manage "how it works" steps, with translatable title/description fields, inside a Filament panel.

Compatibility

Package Version Filament Version
1.x 3.x
2.x 4.x
3.x 5.x

Installation

You can install the package via composer:

composer require jeffersongoncalves/filament-how-it-works:"^3.0"

Register the plugin in your panel provider:

use JeffersonGoncalves\FilamentHowItWorks\FilamentHowItWorksPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentHowItWorksPlugin::make(),
        ]);
}

The Steps resource renders translatable fields (title, description), so a jeffersongoncalves/filament-translatable plugin instance must also be registered in the same panel.

Configuration

Publish the config file:

php artisan vendor:publish --tag="filament-how-it-works-config"
return [
    'navigation_group' => 'How It Works',

    'resources' => [
        'step' => \JeffersonGoncalves\FilamentHowItWorks\Resources\Steps\StepResource::class,
    ],
];

Or configure fluently:

FilamentHowItWorksPlugin::make()->navigationGroup('Homepage');

Testing

composer test

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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