From f2feda62e6b5243443e5047d4c04bd3fe0a3189f Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Fri, 10 Oct 2025 00:13:37 +0700 Subject: [PATCH] style: add page transaksi laporan --- Controllers/TransaksiLaporanController.cs | 12 +++++++ Views/Shared/_Sidebar.cshtml | 2 +- Views/TransaksiLaporan/Index.cshtml | 40 +++++++++++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 Controllers/TransaksiLaporanController.cs create mode 100644 Views/TransaksiLaporan/Index.cshtml 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