diff --git a/Controllers/TransaksiLaporanController.cs b/Controllers/TransaksiLaporanController.cs new file mode 100644 index 0000000..9d46e3e --- /dev/null +++ b/Controllers/TransaksiLaporanController.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Controllers +{ + public class TransaksiLaporanController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Views/Shared/_Sidebar.cshtml b/Views/Shared/_Sidebar.cshtml index d84aea6..b975c45 100644 --- a/Views/Shared/_Sidebar.cshtml +++ b/Views/Shared/_Sidebar.cshtml @@ -38,7 +38,7 @@
  • - + Transaksi Laporan diff --git a/Views/TransaksiLaporan/Index.cshtml b/Views/TransaksiLaporan/Index.cshtml new file mode 100644 index 0000000..92302ca --- /dev/null +++ b/Views/TransaksiLaporan/Index.cshtml @@ -0,0 +1,40 @@ +@{ + Layout = "_LayoutApp"; + ViewData["Title"] = "Transaksi Laporan"; + ViewData["TransaksiLaporanActive"] = "menu-active"; +} + +
    +
    + + Transaksi Laporan + +
    +
    + +
    + +
    +
    +
    +
    + Tanggal Awal + +
    +
    + Tanggal Akhir + +
    +
    + Jenis Laporan + +
    + +
    +
    +
    \ No newline at end of file