Download the PHP package invaders-xx/filament-kanban-board without Composer
On this page you can find all versions of the php package invaders-xx/filament-kanban-board. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download invaders-xx/filament-kanban-board
More information about invaders-xx/filament-kanban-board
Files in invaders-xx/filament-kanban-board
Package filament-kanban-board
Short Description Add a Kanban page to filament
License MIT
Homepage https://github.com/invaders-xx/filament-kanban-board
Informations about the package filament-kanban-board
Add a Kanban page to filament
Define a Kanban page within your Filament's application. It can be a page or a resource's page.

Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file:
Optionally, you can publish the views using
You can also specify your own view for record content to change the behaviour:
in your class to add more content to your kanban's boxes.
You can define your own styles for each element of the Kanban:
Usage
In order to use this component, you must create a new Filament Page that extends from FilamentKanbanBoard
For each status we define, we must return an array with at least 2 keys: id and title.
Now, for records() we may define a list of Sales Orders that come from an Eloquent model in your project.
As you might see in the above snippet, we must return a collection of array items where each item must have at least 3 keys: id, title and status. The last one is of most importance since it is going to be used to match to which status the record belongs to. For this matter, the component matches status and records with the following comparison.
if you need to use this page within a Filament's resource, add the route function definition to the class:
Sorting and Dragging
By default, sorting and dragging between statuses is disabled. To enable it, set in your class:
Behavior and Interactions
When sorting and dragging is enabled, your component can be notified when any of these events occur. The callbacks
triggered by these two events are onStatusSorted
and onStatusChanged
On onStatusSorted
you are notified about which record
has changed position within it's status
. You are also given
a $orderedIds
array which holds the ids of the records
after being sorted. You must override the following method to
get notified on this change.
On onStatusChanged
gets triggered when a record
is moved to another status
. In this scenario, you get notified
about the record
that was changed, the new status
, the ordered ids from the previous status and the ordered ids of
the new status the record in entering. To be notified about this event, you must override the following method:
onStatusSorted
and onStatusChanged
are never triggered simultaneously. You'll get notified of one or the other when
an interaction occurs.
You can also get notified when a record in the status board is clicked via the onRecordClick
event
To enable onRecordClick
set it in the class:
Editing records in Modal window
You can enable Modal window to edit records:
Make sure to have $recordClickEnabled
set to true
and $modalRecordClickEnabled
set to true
:
You can set modal title, width, save / cancel button labels:
You can set Form components by overriding function getEditModalRecordSchema()
:
To call Modal with Form override onRecordClick()
function and add the following:
To manipulate with data from the Modal Form override editRecord()
function:
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- David Vincent
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of filament-kanban-board with dependencies
filament/filament Version ^3.0-stable
spatie/laravel-package-tools Version ^1.9.2
illuminate/contracts Version ^8.74|^9.0|^10.0|^11.0