forked from solutionforest/filament-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreePage.stub
67 lines (54 loc) · 1.43 KB
/
TreePage.stub
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
namespace {{ namespace }};
use App\Models\{{ model }};
use Filament\Forms;
use Filament\Pages\Actions\CreateAction;
use SolutionForest\FilamentTree\Actions;
use SolutionForest\FilamentTree\Concern;
use SolutionForest\FilamentTree\Pages\TreePage as BasePage;
use SolutionForest\FilamentTree\Support\Utils;
class {{ class }} extends BasePage
{
protected static string $model = {{ modelClass }}::class;
protected static ?string $navigationIcon = 'heroicon-o-document-text';
protected static int $maxDepth = 2;
protected function getActions(): array
{
return [
$this->getCreateAction(),
// SAMPLE CODE, CAN DELETE
//\Filament\Pages\Actions\Action::make('sampleAction'),
];
}
protected function getFormSchema(): array
{
return [
//
];
}
protected function hasDeleteAction(): bool
{
return false;
}
protected function hasEditAction(): bool
{
return true;
}
protected function hasViewAction(): bool
{
return false;
}
protected function getHeaderWidgets(): array
{
return [];
}
protected function getFooterWidgets(): array
{
return [];
}
// CUSTOMIZE ICON OF EACH RECORD, CAN DELETE
// public function getTreeRecordIcon(?\Illuminate\Database\Eloquent\Model $record = null): ?string
// {
// return null;
// }
}