feat(logs): tambahkan route untuk System Logs

- Menambahkan route untuk mengakses System Logs.
- Menambahkan method 'index' dan 'datatable' pada SystemLogsController.
- Memperbarui konfigurasi breadcrumb untuk mencakup System Logs.
This commit is contained in:
Daeng Deni Mardaeni
2025-04-27 09:15:06 +07:00
parent 0aee1c58ed
commit cc98de144b
2 changed files with 21 additions and 12 deletions

View File

@@ -13,3 +13,8 @@
$trail->parent('logs');
$trail->push('Audit Logs', route('logs.audit.index'));
});
Breadcrumbs::for('logs.system', function (BreadcrumbTrail $trail) {
$trail->parent('logs');
$trail->push('System Logs', route('logs.system.index'));
});