amiralidev/filament-todo

A Filament Kanban Todo plugin.

Maintainers

Package info

github.com/amiralidev/filament-todo

pkg:composer/amiralidev/filament-todo

Fund package maintenance!

:vendor_name

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.9 2026-02-18 07:34 UTC

This package is auto-updated.

Last update: 2026-02-18 07:35:37 UTC


README

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

A powerful and beautiful Kanban-style Todo board plugin for Filament. Manage your tasks and lists with ease using a drag-and-drop interface within your Filament panels.

Filament Todo Board

Features

  • Kanban Board: Drag and drop tasks between lists.
  • Task Management: Create, update, and delete tasks and lists.
  • Filament Integration: Seamlessly integrates as a page or a dashboard widget.
  • Customizable: Easy to configure and extend.

Installation

You can install the package via composer:

composer require amiralidev/filament-todo

Important

If you have not set up a custom theme and are using Filament Panels, follow the instructions in the Filament Docs first.

After setting up a custom theme, add the plugin's views to your theme's CSS file (usually resources/css/filament/admin/theme.css):

@source '../../../../vendor/amiralidev/filament-todo/resources/**/*.blade.php';

You can publish and run the migrations with:

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

You can publish the config file with:

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

Usage

Registering the Plugin

You can register the plugin in your Panel provider (e.g., AdminPanelProvider.php):

use Amiralidev\Filament\TodoPlugin;

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

This will automatically add the Todo Board page to your navigation and make the Todo Board Widget available.

Customizing the Widget

If you want to use the widget on your dashboard, you can add it to your panel's widgets() array:

use Amiralidev\Filament\Widgets\TodoBoardWidget;

public function panel(Panel $panel): Panel
{
    return $panel
        ->widgets([
            TodoBoardWidget::class,
        ]);
}

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.