generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathBoardPage.php
More file actions
34 lines (28 loc) · 898 Bytes
/
BoardPage.php
File metadata and controls
34 lines (28 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
namespace Relaticle\Flowforge;
use Filament\Actions\Contracts\HasActions;
use Filament\Forms\Contracts\HasForms;
use Filament\Pages\Page;
use Livewire\Attributes\Url;
use Relaticle\Flowforge\Concerns\BaseBoard;
use Relaticle\Flowforge\Contracts\HasBoard;
/**
* Board page for standard Filament pages.
* Extends Filament's base Page class with kanban board functionality.
*
* Requires the `filament/filament` package (Panel Builder).
* For standalone usage, use the InteractsWithBoard trait directly.
*
* @see \Relaticle\Flowforge\Concerns\InteractsWithBoard
*/
abstract class BoardPage extends Page implements HasActions, HasBoard, HasForms
{
use BaseBoard;
protected string $view = 'flowforge::filament.pages.board-page';
/**
* @var array<string, mixed>|null
*/
#[Url(as: 'filters')]
public ?array $tableFilters = null;
}