label('Hapus') ->icon('heroicon-m-trash') ->iconButton() ->color('danger') ->requiresConfirmation() ->action(function (array $arguments) { $adjustment = PayrollAdjustment::findOrFail($arguments['adjustment_id']); $adjustment->delete(); }) ->successNotification(SystemNotification::delete()); } }