| 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
return [
/*
|--------------------------------------------------------------------------
| Contact Information
|--------------------------------------------------------------------------
|
| These values are displayed on the contact page and throughout the
| marketing site.
|
*/
'contact' => [
'email' => env('MARKETING_CONTACT_EMAIL', 'hello@scopeforged.com'),
'phone' => env('MARKETING_CONTACT_PHONE', ''),
'response_time' => env('MARKETING_RESPONSE_TIME', '4 business hours'),
],
/*
|--------------------------------------------------------------------------
| Social Media Links
|--------------------------------------------------------------------------
*/
'social' => [
'linkedin' => env('SOCIAL_LINKEDIN', ''),
'twitter' => env('SOCIAL_TWITTER', ''),
'github' => env('SOCIAL_GITHUB', ''),
],
/*
|--------------------------------------------------------------------------
| Company Information
|--------------------------------------------------------------------------
*/
'company' => [
'name' => env('COMPANY_NAME', 'ScopeForged'),
'tagline' => env('COMPANY_TAGLINE', 'Transparent Software Development'),
'founded_year' => env('COMPANY_FOUNDED_YEAR', '2024'),
],
/*
|--------------------------------------------------------------------------
| Live Chat Configuration
|--------------------------------------------------------------------------
|
| Configure the live chat widget for the marketing site. Currently supports
| Crisp, Intercom, and Tawk.to.
|
*/
'chat' => [
'enabled' => env('CHAT_ENABLED', false),
'provider' => env('CHAT_PROVIDER', 'crisp'),
// Crisp - recommended for small teams. Free tier available.
// Get your Website ID from: https://app.crisp.chat/settings/website/
'crisp' => [
'website_id' => env('CRISP_WEBSITE_ID', ''),
],
// Intercom - better for growth/enterprise. Paid plans only.
// Get your App ID from: https://app.intercom.com/settings
'intercom' => [
'app_id' => env('INTERCOM_APP_ID', ''),
],
// Tawk.to - completely free but with limited features.
// Get your Property ID from: https://dashboard.tawk.to/
'tawk' => [
'property_id' => env('TAWK_PROPERTY_ID', ''),
'widget_id' => env('TAWK_WIDGET_ID', ''),
],
],
];