From 136dd5bd10093892a2bbaa2348fc9c6288f9117d Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Thu, 23 Oct 2025 22:17:41 +0700 Subject: [PATCH] style: add page transaksi laporan for dinas --- .../Controllers/TransaksiLaporanController.cs | 13 +++++++ .../Dinas/Views/TransaksiLaporan/Index.cshtml | 38 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 Areas/Dinas/Controllers/TransaksiLaporanController.cs create mode 100644 Areas/Dinas/Views/TransaksiLaporan/Index.cshtml diff --git a/Areas/Dinas/Controllers/TransaksiLaporanController.cs b/Areas/Dinas/Controllers/TransaksiLaporanController.cs new file mode 100644 index 0000000..9bdcc00 --- /dev/null +++ b/Areas/Dinas/Controllers/TransaksiLaporanController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Dinas.Controllers +{ + [Area("Dinas")] + public class TransaksiLaporanController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Areas/Dinas/Views/TransaksiLaporan/Index.cshtml b/Areas/Dinas/Views/TransaksiLaporan/Index.cshtml new file mode 100644 index 0000000..cf5721a --- /dev/null +++ b/Areas/Dinas/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