$data = [
'param1' => 'value',
'param2' => 'value',
'param3' => 'value',
];
<script>
window.APP_DATA = @json($data);
</script>
Переименовать ее без переустановки винлы не получается
const submit = document.querySelector('#payment input[type=submit]');
document.querySelectorAll('#payment input[type=radio]').forEach(input => {
input.addEventListener('change', () => {
let checked = document.querySelector('#payment input[type=radio]:checked');
if (checked) {
submit.disabled = checked.value === 'alg_custom_gateway_1';
}
})
});