amiralidev / filament-todo
A Filament Kanban Todo plugin.
Fund package maintenance!
Requires
- php: ^8.2
- filament/filament: ^3.0|^4.0|^5.0
- filament/forms: ^3.0|^4.0|^5.0
- filament/tables: ^3.0|^4.0|^5.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.0
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^9.0|^10.0
- pestphp/pest: ^3.7|^4.0
- pestphp/pest-plugin-arch: ^3.0|^4.0
- pestphp/pest-plugin-laravel: ^3.0|^4.0
- pestphp/pest-plugin-livewire: ^3.0|^4.0
- rector/rector: ^2.0
- spatie/laravel-ray: ^1.26
README
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.
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.
