using Microsoft.AspNetCore.Mvc; namespace BankSampahApp.Controllers.Main { [Route("Main/[controller]/[action]")] public class ReduksiSampahSatpelController : Controller { public IActionResult Index() { return View("~/Views/Main/ReduksiSampahSatpel/Index.cshtml"); } [HttpGet] public IActionResult Table() { var data = new[] { new { nama_lokasi = "Jakarta Pusat", alamat = @"
Tanah Abang
Cideng RT 002 RW 001
", jenis_lokasi = "Maggot", berat = 1, gambar = @"", }, new { nama_lokasi = "Jakarta Selatan", alamat = @"
Kebayoran Baru
Gandaria Utara RT 005 RW 003
", jenis_lokasi = "Komposting", berat = 2, gambar = @"", }, new { nama_lokasi = "Jakarta Barat", alamat = @"
Palmerah
Kemanggisan RT 004 RW 002
", jenis_lokasi = "Maggot", berat = 3, gambar = @"", }, new { nama_lokasi = "Jakarta Timur", alamat = @"
Cakung
Pulo Gebang RT 007 RW 005
", jenis_lokasi = "Komposting", berat = 4, gambar = @"", }, new { nama_lokasi = "Jakarta Utara", alamat = @"
Tanjung Priok
Sunter Jaya RT 003 RW 001
", jenis_lokasi = "Maggot", berat = 2, gambar = @"", }, new { nama_lokasi = "Depok", alamat = @"
Beji
Beji Timur RT 006 RW 002
", jenis_lokasi = "Komposting", berat = 3, gambar = @"", }, new { nama_lokasi = "Bogor", alamat = @"
Bogor Utara
Kedunghalang RT 001 RW 004
", jenis_lokasi = "Maggot", berat = 5, gambar = @"", }, new { nama_lokasi = "Tangerang", alamat = @"
Karawaci
Nusa Jaya RT 008 RW 003
", jenis_lokasi = "Komposting", berat = 2, gambar = @"", }, new { nama_lokasi = "Bekasi", alamat = @"
Bekasi Timur
Margahayu RT 009 RW 005
", jenis_lokasi = "Maggot", berat = 3, gambar = @"", }, new { nama_lokasi = "Bandung", alamat = @"
Coblong
Dago RT 002 RW 001
", jenis_lokasi = "Komposting", berat = 1, gambar = @"", }, }; return Json(new { data = data }); } } }