ConfiguerUsing not working in service provider
i use this code in service provider
use Filament\Tables\Actions\DeleteAction;
DeleteAction::configureUsing(function (DeleteAction $action): void {
$action
->successNotificationTitle('Data Deleted')
->iconButton();
});
but the notification title did not changed
0 Replies