| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/client-portal-laravel/releases/20260626120707/config/ |
Upload File : |
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Audit Reminders
|--------------------------------------------------------------------------
|
| Configure automated reminder settings for audit findings.
|
*/
'reminders' => [
'enabled' => env('AUDIT_REMINDERS_ENABLED', true),
// Days before due date to send reminders
'intervals' => [7, 3, 1, 0], // 0 = overdue
],
/*
|--------------------------------------------------------------------------
| Weekly Digest
|--------------------------------------------------------------------------
|
| Configure weekly audit digest email settings.
|
*/
'weekly_digest' => [
'enabled' => env('AUDIT_WEEKLY_DIGEST_ENABLED', true),
// Default day to send digest (0 = Sunday, 1 = Monday, etc.)
'default_day' => 1, // Monday
// Default time to send digest
'default_time' => '08:00',
],
/*
|--------------------------------------------------------------------------
| Stale Items
|--------------------------------------------------------------------------
|
| Configure stale item warning settings.
|
*/
'stale_items' => [
'enabled' => env('AUDIT_STALE_WARNINGS_ENABLED', true),
// Days without activity before an item is considered stale
'threshold_days' => env('AUDIT_STALE_THRESHOLD_DAYS', 14),
// Days before escalating to client admin
'escalation_days' => env('AUDIT_ESCALATION_DAYS', 21),
// Minimum days between warning notifications
'warning_interval_days' => 3,
// Minimum days between escalation notifications
'escalation_interval_days' => 7,
],
/*
|--------------------------------------------------------------------------
| Benchmarking
|--------------------------------------------------------------------------
|
| Settings for benchmark calculations.
|
*/
'benchmarks' => [
// Minimum number of audits required for benchmark data
'minimum_audits' => 5,
],
];