net7/filament-taxonomies

A Filament plugin to manage taxonomies

dev-main 2024-05-16 09:38 UTC

This package is auto-updated.

Last update: 2025-05-13 10:38:11 UTC


README

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

A Filament plugin to manage multi-level taxonomies

Installation

You can install the package via composer:

composer require net7/filament-taxonomies

Publish the assets:

php artisan vendor:publish --tag="filament-taxonomies-assets"

Remember to link the storage

php artisan storage:link

You can publish and run the migrations with:

php artisan vendor:publish --tag="filament-taxonomies-migrations"
php artisan migrate

You can publish the config file with:

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

Optionally, you can publish the views using

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

This is the contents of the published config file:

return [
];

Usage

$filamentTaxonomies = new Net7\FilamentTaxonomies();
echo $filamentTaxonomies->echoPhrase('Hello, net7!');

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.