PHP code example of invaders-xx / filament-kanban-board
1. Go to this page and download the library: Download invaders-xx/filament-kanban-board library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
invaders-xx / filament-kanban-board example snippets
return [
];
public string $recordContentView = 'filament-kanban-board::record-content';
protected function styles(): array
{
return [
'wrapper' => 'w-full h-full flex space-x-4 overflow-x-auto',
'kanbanWrapper' => 'h-full flex-1',
'kanban' => 'bg-primary-200 rounded px-2 flex flex-col h-full',
'kanbanHeader' => 'p-2 text-sm text-gray-900',
'kanbanFooter' => '',
'kanbanRecords' => 'space-y-2 p-2 flex-1 overflow-y-auto',
'record' => 'shadow bg-white dark:bg-gray-800 p-2 rounded border',
'recordContent' => 'w-full',
];
}
class KanbanOrders extends FilamentKanbanBoard
{
protected function statuses() : Collection
{
return collect([
[
'id' => 'registered',
'title' => 'Registered',
],
[
'id' => 'awaiting_confirmation',
'title' => 'Awaiting Confirmation',
],
[
'id' => 'confirmed',
'title' => 'Confirmed',
],
[
'id' => 'delivered',
'title' => 'Delivered',
],
]);
}
}
protected function records() : Collection
{
return SalesOrder::all()
->map(function (SalesOrder $item) {
return [
'id' => $item->id,
'title' => $item->customer->name,
'status' => $item->status,
];
});
}
$status['id'] == $record['status'];
public static function route(string $path): array
{
return [
'class' => static::class,
'route' => $path,
];
}
public bool $sortable = true;
public bool $sortableBetweenStatuses = true;
public function onStatusSorted($recordId, $statusId, $orderedIds)
{
//
}
public function onStatusChanged($recordId, $statusId, $fromOrderedIds, $toOrderedIds)
{
//
}
public function onRecordClick($recordId)
{
//
}
public bool $recordClickEnabled = true;
public bool $recordClickEnabled = true;
public bool $modalRecordClickEnabled = true;
protected string $editModalRecordTitle = 'Edit modal record title';
protected string $editModalRecordWidth = '2xl';
public string $editModalSaveButtonLabel = "Save";
public string $editModalCancelButtonLabel = "Cancel";
protected static function getEditModalRecordSchema(): array
{
return [
TextInput::make('title'),
TextInput::make('status'),
];
}
public function onRecordClick($recordId, $data): void
{
$this->editModalRecord->fill($data);
$this->dispatchBrowserEvent('open-modal', ['id' => 'kanban--edit-modal-record']);
}
public function editRecord(array $data): void
{
}