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 { periode = "Januari", jumlah_rumah_memilah = "Kecamatan Kramatjati", status = "
DIVERIFIKASI SATPEL
", gambar = "", }, new { periode = "Januari", jumlah_rumah_memilah = "Kecamatan Kramatjati", status = "
DIVERIFIKASI SATPEL
", gambar = "", }, new { periode = "Februari", jumlah_rumah_memilah = "Kecamatan Pasar Rebo", status = "
MENUNGGU VERIFIKASI
", gambar = "", }, new { periode = "Maret", jumlah_rumah_memilah = "Kecamatan Ciracas", status = "
DIVERIFIKASI SATPEL
", gambar = "", }, new { periode = "April", jumlah_rumah_memilah = "Kecamatan Makasar", status = "
BELUM DISETUJUI
", gambar = "", }, new { periode = "Mei", jumlah_rumah_memilah = "Kecamatan Jatinegara", status = "
DIVERIFIKASI SATPEL
", gambar = "", }, new { periode = "Juni", jumlah_rumah_memilah = "Kecamatan Duren Sawit", status = "
MENUNGGU VERIFIKASI
", gambar = "", }, new { periode = "Juli", jumlah_rumah_memilah = "Kecamatan Cipayung", status = "
DIVERIFIKASI SATPEL
", gambar = "", }, new { periode = "Agustus", jumlah_rumah_memilah = "Kecamatan Kembangan", status = "
BELUM DISETUJUI
", gambar = "", }, new { periode = "September", jumlah_rumah_memilah = "Kecamatan Palmerah", status = "
MENUNGGU VERIFIKASI
", gambar = "", }, new { periode = "Oktober", jumlah_rumah_memilah = "Kecamatan Kebayoran Baru", status = "
DIVERIFIKASI SATPEL
", gambar = "", } }; return Json(new { data = data }); } } }