| 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 [
/*
|--------------------------------------------------------------------------
| Document Requests
|--------------------------------------------------------------------------
|
| Configure document request functionality including file types,
| size limits, and workflow settings.
|
*/
'document_requests' => [
'enabled' => true,
'max_files_per_request' => 10,
'max_file_size_mb' => 50,
'default_due_days' => 7,
'allowed_file_types' => [
'pdf', 'doc', 'docx', 'xls', 'xlsx', 'png', 'jpg', 'jpeg', 'gif', 'zip',
],
'categories' => [
'general' => 'General',
'financial' => 'Financial',
'legal' => 'Legal',
'identity' => 'Identity',
'other' => 'Other',
],
'priorities' => [
'low' => 'Low',
'normal' => 'Normal',
'high' => 'High',
'urgent' => 'Urgent',
],
'auto_approve' => false,
'notify_on_submit' => true,
'notify_on_approve' => true,
'notify_on_reject' => true,
],
/*
|--------------------------------------------------------------------------
| Messaging / Conversations
|--------------------------------------------------------------------------
|
| Configure the messaging system settings including limits
| and notification preferences.
|
*/
'messaging' => [
'enabled' => true,
'max_message_length' => 5000,
'allow_attachments' => true,
'max_attachments_per_message' => 5,
'max_attachment_size_mb' => 25,
'project_conversations' => true,
'general_conversations' => true,
'notify_on_new_message' => true,
'notify_on_reply' => true,
],
/*
|--------------------------------------------------------------------------
| Feedback
|--------------------------------------------------------------------------
|
| Configure the feedback system settings including types
| and visibility options.
|
*/
'feedback' => [
'enabled' => true,
'types' => [
'general' => 'General Feedback',
'concern' => 'Concern',
'suggestion' => 'Suggestion',
'praise' => 'Praise',
],
'visibility_options' => [
'all' => 'Visible to All',
'admin' => 'Admin Only',
],
'priorities' => [
'low' => 'Low',
'normal' => 'Normal',
'high' => 'High',
],
'require_project' => true,
'allow_anonymous' => false,
'notify_on_new' => true,
'notify_on_addressed' => true,
],
/*
|--------------------------------------------------------------------------
| Approvals
|--------------------------------------------------------------------------
|
| Configure the approval workflow settings including timeout
| and auto-approval rules.
|
*/
'approvals' => [
'enabled' => true,
'require_notes_on_reject' => true,
'auto_approve_timeout_days' => null,
'notify_on_request' => true,
'notify_on_decision' => true,
'allow_delegation' => false,
],
/*
|--------------------------------------------------------------------------
| Notifications
|--------------------------------------------------------------------------
|
| Global notification settings for all collaboration features.
|
*/
'notifications' => [
'email' => true,
'in_app' => true,
'digest' => false,
'digest_frequency' => 'daily',
],
];