From 6befc5faa76690ad75e559c5c137e0828cae75a8 Mon Sep 17 00:00:00 2001 From: Daeng Deni Mardaeni Date: Tue, 18 Mar 2025 07:19:58 +0700 Subject: [PATCH] feat(bank-data): tambahkan entri untuk data bank di module.json - Menambahkan entri baru untuk pengelolaan data bank. - Mengatur izin akses hanya untuk peran administrator. - Memperbarui struktur module.json untuk mencakup data bank. --- module.json | 11 + resources/views/bank-data/index.blade.php | 342 ++++++++++++++++++++++ 2 files changed, 353 insertions(+) create mode 100644 resources/views/bank-data/index.blade.php diff --git a/module.json b/module.json index c0302e9..bf2313a 100644 --- a/module.json +++ b/module.json @@ -109,6 +109,17 @@ } ], "main": [ + { + "title": "Bank Data", + "path": "bank-data", + "icon": "ki-filled ki-questionnaire-tablet text-lg text-primary", + "classes": "", + "attributes": [], + "permission": "", + "roles": [ + "administrator" + ] + }, { "title": "Permohonan", "path": "permohonan", diff --git a/resources/views/bank-data/index.blade.php b/resources/views/bank-data/index.blade.php new file mode 100644 index 0000000..992a893 --- /dev/null +++ b/resources/views/bank-data/index.blade.php @@ -0,0 +1,342 @@ +@extends('layouts.main') + +@section('breadcrumbs') + {{ Breadcrumbs::render('bank-data') }} +@endsection + +@section('content') +
+
+
+
+

+ Filter +

+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+ +
+
+
+
+

+ Maps +

+
+
+
+
+
+
+
+
+
+
+

+ Daftar Bank Data +

+
+
+ +
+ +
+
+ +
+
+ + + + + + + + + + + + + + +
+ + + Jenis Aset + + + Tanggal + + + Tahun + + + Luas Tanah + + + Luas Bangunan + + + Harga + + + Nilai Pasar + + + Location + +
+
+ +
+
+
+@endsection + +@push('scripts') + + +@endpush