function loadBranches(){ fetch('branches.php') .then(res=>res.json()) .then(data=>{ console.log("Branches:", data); // 👈 დაამატე ეს branchesList.innerHTML = ''; data.forEach(b=>{ const li = document.createElement('li'); li.textContent = b.name; branchesList.appendChild(li); }); }) .catch(err=>{ console.log(err); }); }