Satmadan değiştir

Evini, arabanı ya da arsanı takas et

3+1 Daire - İstanbul

3.200.000 TL

+ 500.000 TL fark ile SUV aranıyor

BMW 320i 2020

1.200.000 TL

+ Daire ile takas olur

async function addListing() { const give = document.getElementById("give").value; const want = document.getElementById("want").value; const city = document.getElementById("cityInput").value; const price = document.getElementById("price").value; const desc = document.getElementById("desc").value; const { error } = await supabaseClient .from("listings") .insert([ { give_type: give, want_type: want, city: city, price: price, description: desc } ]); if (!error) { alert("İlan eklendi!"); loadListings(); // listeyi yenile } else { alert("Hata var!"); console.log(error); } }

İlan Ekle