forked from solutionforest/filament-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreeWidget.stub
68 lines (59 loc) · 1.83 KB
/
TreeWidget.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
68
<?php
namespace {{ namespace }};
use App\Models\{{ model }};
use Filament\Notifications\Notification;
use SolutionForest\FilamentTree\Actions\Action;
use SolutionForest\FilamentTree\Actions\ActionGroup;
use SolutionForest\FilamentTree\Actions\DeleteAction;
use SolutionForest\FilamentTree\Actions\EditAction;
use SolutionForest\FilamentTree\Actions\ViewAction;
use SolutionForest\FilamentTree\Widgets\Tree as BaseWidget;
class {{ class }} extends BaseWidget
{
protected static string $model = {{ modelClass }}::class;
protected static int $maxDepth = 2;
protected ?string $treeTitle = '{{ class }}';
protected bool $enableTreeTitle = true;
protected function getFormSchema(): array
{
return [
//
];
}
// CUSTOMIZE ICON OF EACH RECORD, CAN DELETE
// public function getTreeRecordIcon(?\Illuminate\Database\Eloquent\Model $record = null): ?string
// {
// return null;
// }
// CUSTOMIZE ACTION OF EACH RECORD, CAN DELETE
// protected function getTreeActions(): array
// {
// return [
// Action::make('helloWorld')
// ->action(function () {
// Notification::make()->success()->title('Hello World')->send();
// }),
// // ViewAction::make(),
// // EditAction::make(),
// ActionGroup::make([
//
// ViewAction::make(),
// EditAction::make(),
// ]),
// DeleteAction::make(),
// ];
// }
// OR OVERRIDE FOLLOWING METHODS
//protected function hasDeleteAction(): bool
//{
// return true;
//}
//protected function hasEditAction(): bool
//{
// return true;
//}
//protected function hasViewAction(): bool
//{
// return true;
//}
}