| 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 : /proc/2798582/cwd/config/ |
Upload File : |
<?php
return [
/*
|--------------------------------------------------------------------------
| Bulk Operations
|--------------------------------------------------------------------------
|
| Configure bulk operation settings for client management.
|
*/
'bulk' => [
'enabled' => env('CLIENT_BULK_ENABLED', true),
'max_clients' => env('CLIENT_BULK_MAX', 100),
'operations' => [
'archive' => true,
'activate' => true,
'delete' => true,
],
],
/*
|--------------------------------------------------------------------------
| Import/Export
|--------------------------------------------------------------------------
|
| Configure import and export functionality.
|
*/
'import' => [
'enabled' => env('CLIENT_IMPORT_ENABLED', true),
'max_file_size' => env('CLIENT_IMPORT_MAX_SIZE', 5 * 1024 * 1024), // 5MB
'allowed_extensions' => ['csv'],
'update_existing' => env('CLIENT_IMPORT_UPDATE_EXISTING', false),
],
'export' => [
'enabled' => env('CLIENT_EXPORT_ENABLED', true),
'formats' => ['csv', 'json'],
'default_format' => 'csv',
'include_inactive' => env('CLIENT_EXPORT_INCLUDE_INACTIVE', true),
],
/*
|--------------------------------------------------------------------------
| Client Merge
|--------------------------------------------------------------------------
|
| Configure client merge functionality.
|
*/
'merge' => [
'enabled' => env('CLIENT_MERGE_ENABLED', true),
'require_confirmation' => true,
'preserve_secondary_notes' => true,
],
/*
|--------------------------------------------------------------------------
| Default Settings
|--------------------------------------------------------------------------
|
| Default settings for new clients.
|
*/
'defaults' => [
'status' => 'active',
],
];