2
2
3
3
namespace Tapp \FilamentFormBuilder \Filament \Resources \FilamentFormResource \RelationManagers ;
4
4
5
- use Filament \Tables ;
6
- use Filament \Forms \Get ;
7
- use Filament \Forms \Form ;
8
- use Filament \Tables \Table ;
9
- use Filament \Tables \Actions \Action ;
10
5
use Filament \Forms \Components \Select ;
6
+ use Filament \Forms \Components \TagsInput ;
7
+ use Filament \Forms \Components \TextInput ;
11
8
use Filament \Forms \Components \Toggle ;
9
+ use Filament \Forms \Form ;
10
+ use Filament \Forms \Get ;
11
+ use Filament \Resources \RelationManagers \RelationManager ;
12
+ use Filament \Tables ;
13
+ use Filament \Tables \Actions \Action ;
12
14
use Filament \Tables \Columns \IconColumn ;
13
15
use Filament \Tables \Columns \TextColumn ;
16
+ use Filament \Tables \Table ;
14
17
use Illuminate \Database \Eloquent \Model ;
15
- use Filament \Forms \Components \TagsInput ;
16
- use Filament \Forms \Components \TextInput ;
17
- use Filament \Resources \RelationManagers \RelationManager ;
18
18
use Tapp \FilamentFormBuilder \Enums \FilamentFieldTypeEnum ;
19
19
20
20
class FilamentFormFieldsRelationManager extends RelationManager
@@ -84,14 +84,14 @@ public function table(Table $table): Table
84
84
->headerActions ([
85
85
Tables \Actions \CreateAction::make ()
86
86
->visible (function () use ($ form ) {
87
- !$ form ->locked ;
87
+ ! $ form ->locked ;
88
88
})
89
89
->label ('Create Field ' ),
90
90
Action::make ('lock_fields ' )
91
91
->requiresConfirmation ()
92
92
->modalHeading ('Lock Form Fields. Doing this will lock the forms fields and new fields will no longer be able to be changed or edited ' )
93
93
->visible (function () use ($ form ) {
94
- !$ form ->locked ;
94
+ ! $ form ->locked ;
95
95
})
96
96
->action (function () use ($ form ) {
97
97
$ form ->update ([
@@ -102,29 +102,29 @@ public function table(Table $table): Table
102
102
->requiresConfirmation ()
103
103
->modalHeading ('Unlock Form Fields. Changing fields after entries has been made can cause inconsistencies for prexisting entries ' )
104
104
->visible (function () use ($ form ) {
105
- !$ form ->locked ;
105
+ ! $ form ->locked ;
106
106
})
107
107
->action (function () use ($ form ) {
108
108
$ form ->update ([
109
109
'locked ' => true ,
110
110
]);
111
- })
111
+ }),
112
112
])
113
113
->actions ([
114
114
Tables \Actions \EditAction::make ()
115
115
->visible (function () use ($ form ) {
116
- !$ form ->locked ;
116
+ ! $ form ->locked ;
117
117
}),
118
118
Tables \Actions \DeleteAction::make ()
119
119
->visible (function () use ($ form ) {
120
- !$ form ->locked ;
120
+ ! $ form ->locked ;
121
121
}),
122
122
])
123
123
->bulkActions ([
124
124
Tables \Actions \BulkActionGroup::make ([
125
125
Tables \Actions \DeleteBulkAction::make ()
126
126
->visible (function () use ($ form ) {
127
- !$ form ->locked ;
127
+ ! $ form ->locked ;
128
128
}),
129
129
]),
130
130
]);
0 commit comments