From 52097745fcc7568952b15f2ba0f11f342857d7a9 Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Tue, 21 Oct 2025 16:08:30 +0700 Subject: [PATCH] style: add page transaksi laporan for satpel --- .../Controllers/TransaksiLaporanController.cs | 13 +++++++ .../Views/TransaksiLaporan/Index.cshtml | 38 +++++++++++++++++++ Areas/Shared/Layouts/App/_Sidebar.cshtml | 2 +- 3 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 Areas/Satpel/Controllers/TransaksiLaporanController.cs create mode 100644 Areas/Satpel/Views/TransaksiLaporan/Index.cshtml diff --git a/Areas/Satpel/Controllers/TransaksiLaporanController.cs b/Areas/Satpel/Controllers/TransaksiLaporanController.cs new file mode 100644 index 0000000..b2fa3b1 --- /dev/null +++ b/Areas/Satpel/Controllers/TransaksiLaporanController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Satpel.Controllers +{ + [Area("Satpel")] + public class TransaksiLaporanController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Areas/Satpel/Views/TransaksiLaporan/Index.cshtml b/Areas/Satpel/Views/TransaksiLaporan/Index.cshtml new file mode 100644 index 0000000..cf5721a --- /dev/null +++ b/Areas/Satpel/Views/TransaksiLaporan/Index.cshtml @@ -0,0 +1,38 @@ +@{ + ViewData["Title"] = "Transaksi Laporan"; +} + +
+
+ + Transaksi Laporan + +
+
+ +
+ +
+
+
+
+ Tanggal Awal + +
+
+ Tanggal Akhir + +
+
+ Jenis Laporan + +
+ +
+
+
\ No newline at end of file diff --git a/Areas/Shared/Layouts/App/_Sidebar.cshtml b/Areas/Shared/Layouts/App/_Sidebar.cshtml index addbb2b..1c9ef36 100644 --- a/Areas/Shared/Layouts/App/_Sidebar.cshtml +++ b/Areas/Shared/Layouts/App/_Sidebar.cshtml @@ -149,7 +149,7 @@
  • - + Transaksi Laporan