wip
This commit is contained in:
63
config/filament-laravel-log.php
Normal file
63
config/filament-laravel-log.php
Normal 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
|
||||
];
|
||||
Reference in New Issue
Block a user