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"; +} + +