can you help me how to pass a variable from 1 method to another? i've code something like this ```php ->modalSubheading(function ($record) { $data = Setoran::where('status', 'Unconfirm') ->where('dana', $record->dana)->first(); // }) ->action(function ($record): void { $setoran_id = ??; // }) ->modalButton(function():void { $setoran_id = ??; // }) ``` i want to use $data from subheading in action and modalButton method..