diff --git a/module.json b/module.json index 9ac9e25..0e92183 100644 --- a/module.json +++ b/module.json @@ -63,6 +63,19 @@ "roles": [] } ], + "laporan": [ + { + "title": "Laporan Transaksi ATM", + "path": "atm-reports", + "icon": "ki-filled ki-printer text-lg text-primary", + "classes": "", + "attributes": [], + "permission": "", + "roles": [ + "administrator" + ] + } + ], "master": [ { "title": "Basic Data", diff --git a/resources/views/atm-reports/index.blade.php b/resources/views/atm-reports/index.blade.php new file mode 100644 index 0000000..adcc2a7 --- /dev/null +++ b/resources/views/atm-reports/index.blade.php @@ -0,0 +1,271 @@ +@extends('layouts.main') + +@section('title', 'ATM Transaction Reports') + +@section('breadcrumbs') + {{ Breadcrumbs::render(request()->route()->getName()) }} +@endsection + +@section('content') +
+
+
+

Request ATM Transaction Report

+
+
+
+ @csrf + +
+
+ + + @error('report_date') +
{{ $message }}
+ @enderror +
+ +
+ +
+
+
+
+
+ +
+
+
+

+ ATM Transaction Reports +

+
+
+ +
+
+
+
+
+ + + + + + + + + + + + + +
+ + + ID + + + Period + + + Report Date + + + Status + + + Authorization + + + Created At + + Action
+
+ +
+
+
+
+@endsection + +@push('scripts') + + + +@endpush diff --git a/routes/breadcrumbs.php b/routes/breadcrumbs.php index 9d43203..42fc368 100644 --- a/routes/breadcrumbs.php +++ b/routes/breadcrumbs.php @@ -114,3 +114,9 @@ $trail->parent('home'); $trail->push('Print Stetement', route('statements.index')); }); + + + Breadcrumbs::for('atm-reports.index', function (BreadcrumbTrail $trail) { + $trail->parent('home'); + $trail->push('Laporan Transaksi ATM', route('atm-reports.index')); + });