File tree 1 file changed +5
-5
lines changed
src/Filament/Resources/FilamentFormResource/RelationManagers
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -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
- return !$ form ->locked ;
87
+ return ! $ 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
- return !$ form ->locked ;
94
+ return ! $ form ->locked ;
95
95
})
96
96
->action (function () use ($ form ) {
97
97
$ form ->update ([
@@ -113,18 +113,18 @@ public function table(Table $table): Table
113
113
->actions ([
114
114
Tables \Actions \EditAction::make ()
115
115
->visible (function () use ($ form ) {
116
- return !$ form ->locked ;
116
+ return ! $ form ->locked ;
117
117
}),
118
118
Tables \Actions \DeleteAction::make ()
119
119
->visible (function () use ($ form ) {
120
- return !$ form ->locked ;
120
+ return ! $ 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
- return !$ form ->locked ;
127
+ return ! $ form ->locked ;
128
128
}),
129
129
]),
130
130
]);
You can’t perform that action at this time.
0 commit comments