8 lines
213 B
JavaScript
8 lines
213 B
JavaScript
|
$('.btn-actions').on('click', (e) => {
|
||
|
e.preventDefault();
|
||
|
|
||
|
let importType = $('#import_type').val();
|
||
|
|
||
|
window.location.href = route('admin.download_csv.index', { import_type: importType });
|
||
|
});
|