Filament Apporval Action not working

I implemented filament approval but this code not working ->actions( ...\EightyNine\Approvals\Tables\Actions\ApprovalActions::make( // define your action here that will appear once approval is completed Actions\Action::make("Done"), [ Tables\Actions\EditAction::make(), ] ), )
No description
1 Reply
Bruno Pereira
Bruno Pereira4w ago
as the error says the function expects filament\tables\actions\action or an array, you are passing a Actions\Action and then an array. You can try to put the make('done') inside the array

Did you find this page helpful?