This commit is contained in:
Dennis
2022-08-30 10:09:06 +02:00
parent 9952e2226d
commit 175b104ebc
4 changed files with 166 additions and 2 deletions

View File

@@ -0,0 +1,63 @@
<?php
return [
/**
* Secure the page behind a custom policy.
*/
'authorization' => false,
/**
* The directory(ies) containing the log files.
*/
'logsDir' => [
storage_path('logs'),
],
/**
* Files to ignore when searching for log files.
* Accepts wildcards eg: *.log
*/
'exclude' => [
//
],
/**
* Navigation group.
*/
'navigationGroup' => 'Settings',
/**
* Navigation sort.
*/
'navigationSort' => 50,
/**
* Navigation icon.
*/
'navigationIcon' => 'heroicon-o-document-text',
/**
* Navigation label.
*/
'navigationLabel' => 'Logs',
/**
* Navigation slug.
*/
'slug' => 'system-logs',
/**
* Maximum amount of lines that editor will render.
*/
'maxLines' => 50,
/**
* Minimum amount of lines that editor will render.
*/
'minLines' => 10,
/**
* Editor font size.
*/
'fontSize' => 12
];